It really is about how you pass the request back to Haystack (and therefore to Solr). You can do a fuzzy search in Solr / Lucene with ~ after the word:
ubuntu~
will return both buntu and ubantu . See Lucene Documentation.
How you go through Haystack depends on how you are currently using it. Assuming you use SearchForm by default, it would be best to either override the clean_q form method to add a tilde at the end of each word in the search results, or override the search method to do the same before passing it to SearchQuerySet.
source share