Reputation: 1484
I was just wondering if in sunspot solr we could do a search with the following logic:
keyword = orange OR red orange OR blue green
Thanks in advance for any inputs
Upvotes: 0
Views: 963
Reputation: 1484
It may be a little bit vague of an explanation now, but it seems that sunspot solr enables you to adjust the search params before querying solr itself. I would update this answer once I get some time on my hands to work on this problem again.
Upvotes: 0
Reputation: 31
keywords("orange red blue"){minimum_match 1} will search for keyword = orange or red or blue.
the sunspot fulltext docs have a couple other methods to alter your search.
Upvotes: 2