In Django data model, Consider that we have a text like this:
I am going to go somewhere.
If I use the Entity.objects.filter(column__contains="go"), it will return going word as well. But I only want the go word to be returned.
Is there any solution other than using Full Text Search?