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

i am searching with Thinking Sphinx and have Tags and UserDefinedTags associated to my Model. What i want is to search for stuff that has at least one, or more Tags defined in the parameter hash. So basically if the intersection of :tag_ids (tag collection of the Model) and params[selected_tags] (chosen tags to search for) is not [], the object should be found. For the Moment I use :with_all as following, but this obviously finds sth. only if all Tags accord with params[selected_tags]. If I use :with the same way, nothing is found. Can u please help me out? Here is my Code:

Controller:

search = s.constantize.search(params[:searching], # Searching for given String
                :with_all => {:tag_ids => params[:selected_tags], :user_defined_tag_ids => params[:selected_user_defined_tags]},
                :match_mode => :all)

Thanks,

kuche

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.