[ https://issues.apache.org/jira/browse/SOLR-1094?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12703581#action_12703581 ]
Mark Miller commented on SOLR-1094: ----------------------------------- Still something slightly off here - if the word is correct and there are no suggestions, it does not say correctly spelled. No freq info is added, so correctly spelled is skipped. Simple enough, but still looking for the right way to address it. The last patch just addressed when a single word not from the index was incorrectly marked as correctly spelled. > spellcheck component, correctlySpelled is bogus! > ------------------------------------------------ > > Key: SOLR-1094 > URL: https://issues.apache.org/jira/browse/SOLR-1094 > Project: Solr > Issue Type: Bug > Affects Versions: 1.3 > Reporter: David Smiley > Assignee: Shalin Shekhar Mangar > Fix For: 1.4 > > Attachments: SOLR-1094.patch > > > I've found that {{correctlySpelled}} is sometimes hidden and it is sometimes > shown, and when it is shown it may indicate true when it should clearly be > false. As such I've discounted it altogether. I should be fixed or removed. > Here's a search query I ran against my index and I swear I don't have a > termh "zzzwwwzzzzzz" :-) > {code} > <lst name="responseHeader"> > <int name="status">0</int> > <int name="QTime">58</int> > <lst name="params"> > <str name="spellcheck">true</str> > <str name="rows">0</str> > <str name="indent">on</str> > <str name="echoParams">explicit</str> > <str name="spellcheck.collate">true</str> > <str name="spellcheck.extendedResults">true</str> > <str name="q">zzzwwwzzzzzz</str> > <str name="spellcheck.count">3</str> > <str name="version">2.2</str> > </lst> > </lst> > <result name="response" numFound="0" start="0"/> > <lst name="spellcheck"> > <lst name="suggestions"> > <bool name="correctlySpelled">true</bool> > </lst> > </lst> > </response> > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.