: Documents in my solr index has three fields, name, content and summary. : Suppose the user query be, "java sky democratic". I want the resulting : documents to have all the terms in the query ( "java sky democratic") in : either name, content or the summary (for example i.e., java and sky is in the : content and democratic is in the summary).
take a look at the "dismax" request handler. it is designed explicitly for this purpose. http://wiki.apache.org/solr/DisMaxRequestHandler (NOTE: if you want all the input words to be required, set mm=100%) -Hoss