Hi..
       I have a term("who") where original frequency of "who" is 191 but
when I get suggestion of "who" it gives me 90. Why?

Example :

*Original Frequency* comes like:

"spellcheck":{
    "suggestions":[
      "who",{
        "numFound":1,
        "startOffset":1,
        "endOffset":4,
        "origFreq":*191*,
      "correctlySpelled",false]}}

While In *Suggestion*, it gives like:

"spellcheck":{
    "suggestions":[
      "whs",{
        "numFound":1,
        "startOffset":1,
        "endOffset":4,
        "origFreq":0,
        "suggestion":[{
            "word":"who",
            "freq":*90*}]},
      "correctlySpelled",false]}}



Why it is so?

I am using StandardTokenizerFactory with ShingleFilterFactory in
Schema.xml..

Reply via email to