Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.