On 8/9/07, Thiago Jackiw <[EMAIL PROTECTED]> wrote: > This may be obvious but I can't get my head straight. Is there a way > to return a list of matching words that a record got matched against?
Unfortunately no... lucene doesn't provide that capability with standard queries. You could do it (slower) with additional queries of course: q=solr OR rails&rows=5 // retrieves the top docs q=solr OR rails&fq=solr&fl=id // see which top docs match solr q=solr OR rails&fq=rails&f=id // see which top docs match rails -Yonik