Interface SolrQueryPostProcessor
Deprecated.
Since 5.7, use a FacetSearchListener instead.
APi defining a SOLR query post processor. It provides a direct access to the query right before performing search on
solr's index. There could be multiple post-processors that are configured for the
SolrQueryConverter
implementation.-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.solr.client.solrj.SolrQueryprocess(org.apache.solr.client.solrj.SolrQuery query, SearchQuery solrSearchQuery) Deprecated.Processes theSolrQueryobject according to some custom business logic.
-
Method Details
-
process
org.apache.solr.client.solrj.SolrQuery process(org.apache.solr.client.solrj.SolrQuery query, SearchQuery solrSearchQuery) Deprecated.Processes theSolrQueryobject according to some custom business logic.- Parameters:
query- -SolrQuerythat is being processedsolrSearchQuery- -SearchQuerythe search data from the user request- Returns:
SolrQuery- the outcome of the post-processing
-