This questions is about Django Haystack, with Whoosh backend. I would like to use spelling suggestion in my search. The problem is that it is suggesting TOO much.
Say I have two models: Apples and Oranges.
If I have somethine like this:
result = SearchQuerySet().models(Apples).filter(
content=escaped_value).spelling_suggestion(escaped_value)
it will actually LOOK into Oranges model and return a spelling suggestion from that! It seems like models(Apples) restriction does not work.
I have indexes setup for both models, with "text" attribute as document=True. My spelling is ON. I am using Whoosh as backend.