I believe I just fixed this on SOLR-606 (thanks to Stefan's patch).
Give it a try and let us know.
-Grant
On Aug 13, 2008, at 2:25 PM, Doug Steigerwald wrote:
I've noticed a few things with the new spellcheck component that
seem a little strange.
Here's my document:
<doc>
<field name="id">5</field>
<field name="spell">wii blackberry blackjack creative labs zen ipod
video nano</field>
</doc>
Some sample queries:
http://localhost:8983/solr/core1/spellCheckCompRH?q=blackberri+wi&spellcheck=true&spellcheck.collate=true
http://localhost:8983/solr/core1/spellCheckCompRH?q=blackberr+wi&spellcheck=true&spellcheck.collate=true
http://localhost:8983/solr/core1/spellCheckCompRH?q=blackber+wi&spellcheck=true&spellcheck.collate=true
When spellchecking 'blackberri wi', the collation returned is
'blackberry wii'. When spellchecking 'blackberr wi', the collation
returned is 'blackberrywii'. 'blackber wi' returns 'blackberrwiiwi'.
Doug