Use the explain function to understand why the query is producing the results you see.
http://lucene.apache.org/core/3_6_0/api/core/org/apache/lucene/search/Searcher.html#explain(org.apache.lucene.search.Query, int) Does your current query return Listing 2 first? That might be because of term frequencies. Which analyzers are you using? http://www.lucidimagination.com/content/scaling-lucene-and-solr#d0e63 Cheers, Ivan On Wed, May 16, 2012 at 12:41 PM, Meeraj Kunnumpurath <[email protected]> wrote: > Hi, > > I am quite new to Lucene. I am trying to use it to index listings of local > businesses. The index has only one field, that stores the attributes of a > listing as well as email addresses of users who have rated that business. > > For example, > > Listing 1: "XYZ Takeaway London [email protected] [email protected] > [email protected]" > Listing 2: "ABC Takeaway London [email protected] [email protected]" > > Now when the user does a search with "Takeaway [email protected]", how do I > get listing 1 to always come before listing 2, because it has the term > [email protected] appear twice where as listing 2 has it only once? > > Regards > Meeraj --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
