Full text search with mysql & django can be done using following django api query
Entry.objects.filter(headline__search="search text")
This returns result set properly.But this can't be used with postgresql, while using getting an exception which is shown below
Full-text search is not implemented for this database backend
How can i imlement full text search with postgresql & django which is same as that of django-mysql full text search?