solrfntemplating
functions are used to construct search queries from FreeMarker templates
and trigger Solr server searches that will return results in form of a JSON string. Such results can be easily processed in FreeMarker templates.
These templating functions are provided by the magnolia-solr-templating submodule of the
Solr module.
All of the solrfn query methods are provided by the info.magnolia.search.solr.templating.SolrTemplatingFunction Java class and return a
info.magnolia.search.solr.templating.SolrQueryBuilder object.
Calling one of its methods returns the same object and so you can chain the methods using the same object.
The Solr Search Provider module allows you to define more than one server (see
Configuring Solr clients).
To specify which Solr client should be leveraged, use the clientName method in the SolrQueryBuilder.
Indexers and crawlers allow you to specify the type of content to be indexed, see the type property in crawler and indexer configuration. You can use the equivalent solrfn type method as a search filter.
By default, all words or phrases specified in the query are treated as "optional"
clauses. The mm parameter makes it possible to say that a certain minimum number of those clauses must match.
Highlighting allows you to include with the query response fragments of documents that match the user’s query.
Fragments (also referred to as snippets or passages) are a portion of a document field that contains matches from the query.
The fragments are included in the highlighting section, a special section of the response, and the client uses the formatting clues also included to determine how to present the fragments to users.
Faceting is the arrangement of search results into categories based on indexed terms. It makes it easy for users to explore search results, narrowing in on exactly the results they are looking for.
Searchers are presented with the indexed terms, along with numerical counts of how many matching documents were found for each term.
Limits the terms on which to facet to those containing the given substring and allows case to be ignored when matching the given substring against candidate facet terms.
For specific field, limits the terms on which to facet to those containing the given substring and allows case to be ignored when matching the given substring against candidate facet terms.
f.<field>.facet.contains
f.<field>.facet.contains.ignoreCase
facetLimit(int limit)
Specifies the maximum number of facets for a field that are returned.
The default value is 100.
facet.limit
facetLimit(String field, int limit)
For specific field, specifies the maximum number of facets for a field that are returned.
f.<field>.facet.limit
facetSort(boolean index)
If set to true, returns the constraints sorted in their index order.
If set to false, returns the constraints sorted by count.
The default is count if the facet limit is greater than 0, otherwise, the default is index.
facet.sort
facetSort(String field, boolean index)
Same as the facetSort(boolean index) method, but only for a specific field.
f.<field>.facet.sort
facetMinCount(int minCount)
Specifies the minimum counts required for a facet field to be included in the response.