You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2010/07/30 04:11:52 UTC

[Solr Wiki] Update of "SimpleFacetParameters" by HossMan

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "SimpleFacetParameters" page has been changed by HossMan.
The comment on this change is: cleaning up DisMaxRequestHandler refs.
http://wiki.apache.org/solr/SimpleFacetParameters?action=diff&rev1=40&rev2=41

--------------------------------------------------

- Solr provides a [[http://lucene.apache.org/solr/docs/api/org/apache/solr/request/SimpleFacets.html|Simple Faceting toolkit]] which can be reused by various Request Handlers to include a "Facet counts" section within a search response. This extra section provides a breakdown or summary of the results based on some simple criteria, which can used to help implement more advanced search interfaces. Use of faceting does not affect the results section of a search response. Both the StandardRequestHandler and the DisMaxRequestHandler currently use these utilities.
+ Solr provides a [[http://lucene.apache.org/solr/docs/api/org/apache/solr/request/SimpleFacets.html|Simple Faceting toolkit]] which can be reused by various Request Handlers to include a "Facet counts" section within a search response. This extra section provides a breakdown or summary of the results based on some simple criteria, which can used to help implement more advanced search interfaces. Use of faceting does not affect the results section of a search response. The SearchHandler uses these utilities via the FacetComponent, which supports the parameters listed here.
  
  For More information on General Issues involved with Faceted searches in Solr, please read the SolrFacetingOverview.