Ok, I missed the Query tab where I can do the actual site search :) I've also used your links, but even with those I fail to grasp why the following is happening:
This is my query: http://localhost:8983/solr/bm/select?q=*%3A*&fq=The+Royal+Garden&rows=50&fl=id%2Ctitle&wt=xml&indent=true And below the result. Notice how results that have "the" in their title are also returned...words like "the", "a", "in" in general are words I wish to ignore IF the rest of the title does not match. And now with my query "The Royal Garden", I have a result that is an exact match on all 3 words, but that result is listed all the way at the bottom. How can I prevent: a) make sure that items that only share the words I want to ignore "the", "a" etc. are not being returned b) make sure that the exact match is at the top of the results and only after that the partial matches, so that the 1st results would be "The Royal Garden" and the 2nd result would be "Royal" Thanks! <?xml version="1.0" encoding="UTF-8"?> <response> <lst name="responseHeader"> <int name="status">0</int> <int name="QTime">1</int> <lst name="params"> <str name="fl">id,title</str> <str name="indent">true</str> <str name="q">*:*</str> <str name="_">1412188632532</str> <str name="wt">xml</str> <str name="fq">The Royal Garden</str> <str name="rows">60</str> </lst> </lst> <result name="response" numFound="9" start="0"> <doc> <str name="id">1579</str> <str name="title">Royal</str></doc> <doc> <str name="id">1603</str> <str name="title">The Blue Lagoon</str></doc> <doc> <str name="id">1629</str> <str name="title">The Nightingale DJ Light Sound Vision</str></doc> <doc> <str name="id">1648</str> <str name="title">The Swingmasters</str></doc> <doc> <str name="id">2431</str> <str name="title">The Cover Band</str></doc> <doc> <str name="id">2457</str> <str name="title">The Teahouse Company</str></doc> <doc> <str name="id">2493</str> <str name="title">The Task - Ultimate Party Band</str></doc> <doc> <str name="id">2499</str> <str name="title">The Royal Garden</str></doc> <doc> <str name="id">2500</str> <str name="title">The Wall</str></doc> </result> </response> -- View this message in context: http://lucene.472066.n3.nabble.com/Flexible-search-field-analyser-tokenizer-configuration-tp4161624p4162174.html Sent from the Solr - User mailing list archive at Nabble.com.