>> "Is there any way to have a single field search use the same keyword search logic as the default query?" Do a phrase search, with double quotes surrounding the multiple keywords, it should work.
Try q=title:("Test Keywords") You could possibly try adding this q.op as local param to query as shown below. https://cwiki.apache.org/confluence/display/solr/Local+Parameters+in+Queries If you are using edismax query parser, check for what is mm pram set. q.op=AND => mm=100%; q.op=OR => mm=0%) https://wiki.apache.org/solr/ExtendedDisMax#mm_.28Minimum_.27Should.27_Match.29 On Fri, Oct 30, 2015 at 3:27 PM, Aaron Gibbons < agibb...@synergydatasystems.com> wrote: > Is there any way to have a single field search use the same keyword search > logic as the default query? I define q.op as AND in my query which gets > applied to any main keywords but any keywords I'm trying to use within a > field do not get the same logic applied. > Example: > q=(title:(Test Keywords)) the space is treated as OR regardless of q.op > q=(Test Keywords) the space is defined by q.op which is AND > > Using the correct operators (AND OR * - +...) it works great as I have it > defined. There's just this one little caveat when you use spaces between > keywords expecting the q.op operator to be applied. > Thanks, > Aaron >