I'm creating a site like craiglist, and am looking to implement a search functionality where users can search for a term and see results. For example, searching for "shirt" will provide all results that contain shirt in the title or product description.
In the future, I want to add filtering (faceting?) as well where users can select options in some column which filters the results even more. For example, if there is a size category where users can select "small", "medium", or "large", selecting one of them will filter the results according to the selected choice.
What is the best way to implement such functionalities? Is Haystack/Solr overkill or can Querysets suffice?
One of my main concern is that I want this search bar to be on every page in my header. Which solution can incorporate that?
Thanks!