RE: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Karthik N S
Hi Vikas Gupta Since Erik Replied to me on my last mail, A FILTER cand be built for the same can be to fetch scrores between 0.2f to 1.0f. Can u please spare me some code for the same. [ Sorry for the Spell mistake, My Mail IDE does not have one ] With regards Karthik -Original

Re: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Nader Henein
Dude, and I say this with love, it's open source, you've got the code, take the initiative, DIY, be creative and share your findings with the rest of us. Personally I would be interested to see how you do this, keep your changes documented and share. Nader Henein Karthik N S wrote: Hi Erik

Re: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Erik Hatcher
On Dec 13, 2004, at 6:58 AM, Karthik N S wrote: Iterate over Hits. returns large hit values and Iteration on Hits for scores consumes time , so How Do I Limit my Search Between [ X.xf to Y.yf ] prior getting the Hits. Why do you need to do this *prior* to getting Hits? You have yet to justify

Re: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Erik Hatcher
On Dec 13, 2004, at 11:16 PM, Karthik N S wrote: time [ A simple search of 'handbags' returned 1,60,000 hits and time taken was 440 secs ,in production Env / May be our Coding is poor,But we are constantly improving the process ]. If your searches are taking 440 seconds, you have something

RE: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Karthik N S
PROTECTED] Sent: Tuesday, December 14, 2004 3:44 PM To: Lucene Users List Subject: Re: HITCOLLECTOR+SCORE+DELIMMA On Dec 13, 2004, at 11:16 PM, Karthik N S wrote: time [ A simple search of 'handbags' returned 1,60,000 hits and time taken was 440 secs ,in production Env / May be our Coding

Re: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Erik Hatcher
On Dec 14, 2004, at 5:42 AM, Karthik N S wrote: What exactly do u mean by this We've emphasized numerous times that calling hits.doc(i) is a resource hit. Don't do it for documents you aren't going to show. To filter by score, use hits.score(i) first. I am bit Confused u mean to say Replace

RE: HITCOLLECTOR+SCORE+DELIMMA

2004-12-13 Thread Karthik N S
: HITCOLLECTOR+SCORE+DELIMMA On Dec 13, 2004, at 6:58 AM, Karthik N S wrote: Iterate over Hits. returns large hit values and Iteration on Hits for scores consumes time , so How Do I Limit my Search Between [ X.xf to Y.yf ] prior getting the Hits. Why do you need to do this *prior* to getting Hits