Support Solr's facet.prefix option

Created on 22 October 2024, 6 months ago

Solr has a facet.prefix option that can be used to filter the facet options ("constraints") that are returned, based on the first characters of a field's indexed value. This is handy for building autocomplete fields for facets that have too many options to list all at once.

The search_api_solr module just needs to check if a developer has passed a prefix in to the facet options and then call the Solarium library's setPrefix() method accordingly.

SearchApiSolrBackend.php:

          if ($info['prefix']) {
            $facet_field->setPrefix($info['prefix']);
          }
✨ Feature request
Status

Active

Version

4.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States aasarava San Diego

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024