I am working on spell checking in Solr. I have implemented Suggestions and collations in my spell checker component.
Most of the time collations work fine but in few case it fails. *Working*: I tried query:*gone wthh thes wnd*: In this "wnd" doesn't give suggestion "wind" but collation is coming right = "gone with the wind", hits = 117 *Not working:* But when I tried query: *gone wthh thes wint*: In this "wint" does give suggestion "wind" but collation is not coming right. Instead of gone with the wind it gives gone with the west, hits = 1. And I want to also know what is *hits* in collations.