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 2006/04/05 21:45:31 UTC

[Solr Wiki] Trivial Update of "SolrRelevancyCookbook" by HossMan

Dear Wiki user,

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

The following page has been changed by HossMan:
http://wiki.apache.org/solr/SolrRelevancyCookbook

The comment on the change is:
missed some Solar=>Solr changes

------------------------------------------------------------------------------
  
  === Sorting ===
  
- If the ranking term is a single valued field, then the Solar sorting mechanism may be used to sort all documents containing that field first (or last if desired).
+ If the ranking term is a single valued field, then the Solr sorting mechanism may be used to sort all documents containing that field first (or last if desired).
  
  For example, if the "popular" field is either missing, or set to "true", then one can move all results containing popular:true to the top of the search results with the following query and sort: 
  {{{
@@ -94, +94 @@

  
  === Approach 1: Index Expansion: index all combinations of groupings ===
  
- A limited form of index expansion may be performed with Solar's [:AnalyzersTokenizersTokenFilters#WordDelimiterFilter: WordDelimiterFilter].
+ A limited form of index expansion may be performed with Solr's [:AnalyzersTokenizersTokenFilters#WordDelimiterFilter: WordDelimiterFilter].
  
  If all possible groupings of subword elements are indexed, the query side may remain relatively simple.  The number of terms indexed using this algorithm will be approximately n(n/2+1/2) where n is the number of sub-word elements.