1

I am working on a django website. I want to search from a lots of texts from django.models(texts is something like stackoverflow questions). I am doing search with Haystack+whoosh. It is very nice using it. Much better than django.object.filter(body_text__icontains="food")

So i would like to know whether i able to have Spelling Suggestions using whoosh or some other PUre python package available. i don't like solr(since it needs java, after every update i need to rebuild the index using java(solr))

j0k
  • 22,600
  • 28
  • 79
  • 90
suhailvs
  • 20,182
  • 14
  • 100
  • 98

1 Answers1

1

Whoosh's documentation for version 2.4.1 indicates it does indeed have a pure-Python spelling suggestion module.

bouteillebleu
  • 2,456
  • 23
  • 32