I wrote a web application using Django to display products information.
My database (MySQL) contains ~200000 records ( fields: brand, name, and img). I want to add a search function to my app (the search is performed on brand and name fields).
I tried haystack with Whoosh, but I found it cost a lot of memory.
Can anyone suggest a way to do it? The application is expected running on a cheap AWS EC2 (small memory).