Re: Lucene Explanation

2021-04-23 Thread Puneeth Bikkumanla
Thank you this was very helpful! On Mon, Apr 12, 2021 at 9:07 AM Michael Sokolov wrote: > You might want to check out > https://issues.apache.org/jira/browse/LUCENE-8019 where I tried to > implement some debugging utilities on top of Explain. It never got > committed, but it does explore some of

Re: Lucene Explanation

2021-04-12 Thread Michael Sokolov
You might want to check out https://issues.apache.org/jira/browse/LUCENE-8019 where I tried to implement some debugging utilities on top of Explain. It never got committed, but it does explore some of the challenges around introducing a more structured explain response. On Fri, Apr 9, 2021 at 6:40

Lucene Explanation

2021-04-09 Thread Puneeth Bikkumanla
Hello, I am currently working on a project that would like to implement Document Explain where we can see how a document was scored internally in lucene given a query. I see that the IndexSearcher has an explain

Re: lucene explanation

2008-12-23 Thread Chris Salem
That worked perfectly. Thanks alot! Sincerely, Chris Salem - Original Message - To: java-user@lucene.apache.org From: Erick Erickson Sent: 12/22/2008 5:00:51 PM Subject: Re: lucene explanation Warning! I'm really reaching on this But it seems you could use TermDocs/TermEn

Re: lucene explanation

2008-12-22 Thread Erick Erickson
Warning! I'm really reaching on this But it seems you could use TermDocs/TermEnum to good effect here. Basically, you should be able, for a given term, use the above to determine whether doc N had a hit in one of your fields pretty efficiently. There's even a WildcardTermEnum that will iterat

lucene explanation

2008-12-22 Thread Chris Salem
Hello, I'm wondering what the best way to accomplish this is. When a user enters text to search on it customarily searches 3 fields, resume_text, profile_text, and summary_text, so a standard query would be something like: (resume_text:(query) OR profile_text:(query) OR summary_text:(query)) For