views:

19

answers:

1

I have one search box where users can search for either the movie name or actor. On the search results page I want to show the top hits for both the actor and for the movie name in separate tables. How is this done with Django Haystack over SOLR?

Thanks!

A: 

Don't know about haystack, but from a Solr point of view you'll have to run one query for actors and another query for movies.

Mauricio Scheffer