lucene - Apache Solr multiple phrase queries with OR -
i using apache solr 1.4 dismax, , trying execute search following 2 phrases:
"call number" "dewey decimal"
i want match documents contain either of phrases. matches if search phrases separately, not together.
i tried queries like:
title:("call number" or "dewey decimal") title:["call number" "dewey decimal"]
any ideas?
did test following query ?
(title:"call number" or title:"dewey decimal")
Comments
Post a Comment