Lets say I have a record with this string 'hairdresser doing great job' in the search index.
How do I make a search query 'hairdresser in Auckland' still return the record above in the search result?
I tried this but I feel it's not the right way to do it:
for word in query.split(' '):
result = SearchQuerySet().filter_or(content=word)
And I don't want to use SOLR I feel it's overkill to install SOLR just to solve this kind of search that don't happen all the time.