Lester Celestial
Lester Celestial

Reputation: 1484

Doing boolean OR query string in sunspot solr

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

Answers (2)

Lester Celestial
Lester Celestial

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

SchlickmeisterJ
SchlickmeisterJ

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

Related Questions