I'm using solr 4.2. And I've implemented Advanced search in my application. In this search, one option is there for 'include all these words'. so whenever i put any word or any phrase without stop words, it works fine but with stop words, it returns no result. For example: Query: purchase tune This query works fine but if i put query like:'i would like to purchase tune' then it gives no results. Why is so? And what i need to do? Also for this kind of search I was using 'mm' parameter in solr. But now using 'q.op'.
In solr i'm adding param q.op as following params.add("q.op","AND"); and query as params.add("q",query);