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