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 TristanVittorio:
http://wiki.apache.org/solr/SpellCheckerRequestHandler

The comment on the change is:
Minor edits and added simple explanation about suggestion ordering.

------------------------------------------------------------------------------
  
  === q ===
  
- The word (or words to be spell checked.
+ The word (or words) to be spell checked.
  
  === qt ===
  
  This must be set to 'spellchecker' in order to invoke the 
SpellCheckerRequestHandler
- 
- === suggestionCount ===
- 
- Determines how many spelling suggestions are returned.  The default value is 
1 but can be configured in SolrConfigXml
- 
- === accuracy ===
- 
- A float value between 1.0 and 0.0 on how close the suggested words should 
match the original word being checked (calculated using the 
[http://en.wikipedia.org/wiki/Levenshtein_distance Levenshtein distance] 
algorithm).  The default value is 0.5 but can be configured in SolrConfigXml.
  
  === termSourceField ===
  
@@ -27, +19 @@

  === spellcheckerIndexDir ===
  
  The directory where your spell checker index should live and defaults to 
'spell' in SolrConfigXml.  May be absolute or relative to the Solr "dataDir" 
directory. If this option is not specified, a RAM directory will be used.
+ 
+ === suggestionCount ===
+ 
+ Determines how many spelling suggestions are returned.  The default value is 
1 but can be configured in SolrConfigXml.  The order of the returned results is 
determined by both the [http://en.wikipedia.org/wiki/Levenshtein_distance 
Levenshtein distance] (or accuracy) of the suggestion and the popularity (the 
frequency) of the suggested word in the termSourceField.
+ 
+ === accuracy ===
+ 
+ A float value between 1.0 and 0.0 on how close the suggested words should 
match the original word being checked (calculated using the 
[http://en.wikipedia.org/wiki/Levenshtein_distance Levenshtein distance] 
algorithm).  The default value is 0.5 but can be configured in SolrConfigXml.
  
  === cmd ===
  

Reply via email to