[Answer]-Implementing an auto-suggest feature (not auto-complete)

1👍

I got expected results by using:

SearchQuerySet().filter(content__in=query.split())

Maybe it’s not the correct way, as tokenizing is the task of the search engine but it worked for me.

👤anand

Leave a comment