I have a CMS running on Django 1.4 and the database is Postgresql 9.1. I have a lot of content in the CMS, and the problem I am facing right now is that finding Django Admin will always get results. I would like to know if there are options to optimize this Django Admin search behavior. I know that Django uses a LIKE query for Postgresql to do a search. I know that Postgresql 9.1 has a GIN and GIST index that can help speed up this Django behavior. I can also modify this search behavior to make it quick and compromise the quality of the search results a bit. I would like to know the most optimal approach to optimize this behavior in Django?
source
share