Re: Solr Keyword query on a specific field.

2015-11-19 Thread Aaron Gibbons
I apologize for the long delay in response. I was able to get it to work tho! Thank you!! The local parameters were confusing to me at first. I'm using SolrNet to build the search which has LocalParams that I am already specifying, but those are not applied to the title portion. What I ended up

Re: Solr Keyword query on a specific field.

2015-11-08 Thread davidphilip cherian
Nested queries might help. http://www.slideshare.net/erikhatcher/solr-query-parsing-tips-and-tricks On Mon, Nov 2, 2015 at 10:20 AM, Aaron Gibbons < agibb...@synergydatasystems.com> wrote: > The input for the title field is user based so a wide range of things can > be entered there. Quoting th

Re: Solr Keyword query on a specific field.

2015-11-02 Thread Aaron Gibbons
The input for the title field is user based so a wide range of things can be entered there. Quoting the title is not what I'm looking for. I also checked and q.op is AND and MM is 100%. In addition to the Title field the user can also use general keywords so setting local params (df) to somethin

Re: Solr Keyword query on a specific field.

2015-10-30 Thread davidphilip cherian
>> "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 sh