Re: Searching the contents

2005-11-04 Thread Chris Hostetter
: Does it possible to retrive the data order/sort by they were inserted in the : index but without putting any extra column in the document? The first step anyone should take in understanding Lucene, is to start by spending a lot of time reading over the javadocs. If you look at the Sort class,

Re: Searching the contents

2005-11-04 Thread Manoj Kr. Sheoran
o: Sent: Friday, November 04, 2005 11:54 PM Subject: Re: Searching the contents > > : > Lucene searching system. How do you manages the iterator and what > : > is the > : > method callback at query execution time(a broader view). > : > : There really isn't

Re: Searching the contents

2005-11-04 Thread Chris Hostetter
: > Lucene searching system. How do you manages the iterator and what : > is the : > method callback at query execution time(a broader view). : : There really isn't any method callback, at least not in the way I'm : thinking of it. When you search you get back Hits. Hits is an If you want a lo

Re: Searching the contents

2005-11-04 Thread Erik Hatcher
nks for sharing your views with us. Is sorting works properly. Is there any idea regarding time estimation for sort on 4-5 columns with 1 million records? Regards, Manoj - Original Message - From: "Chris Lu" <[EMAIL PROTECTED]> To: Sent: Friday, November 04, 2005 12:30 PM S

Re: Searching the contents

2005-11-04 Thread Manoj Kr. Sheoran
). Regards, Manoj - Original Message - From: "Erik Hatcher" <[EMAIL PROTECTED]> To: Sent: Friday, November 04, 2005 3:41 PM Subject: Re: Searching the contents > I certainly recommend testing this to see what kind of response times > you get for the first and success

Re: Searching the contents

2005-11-04 Thread Erik Hatcher
views with us. Is sorting works properly. Is there any idea regarding time estimation for sort on 4-5 columns with 1 million records? Regards, Manoj - Original Message - From: "Chris Lu" <[EMAIL PROTECTED]> To: Sent: Friday, November 04, 2005 12:30 PM Subject: Re: Search

Re: Searching the contents

2005-11-03 Thread Manoj Kr. Sheoran
4, 2005 12:30 PM Subject: Re: Searching the contents > One of my case is using PIII 450MHz 256M RAM, with 1million records, > the search is around 3~4 seconds for the very first search, and > sub-second, usually under 0.5 second. > > Sorting on one column will be longer, like 7~8 se

Re: Searching the contents

2005-11-03 Thread Chris Lu
One of my case is using PIII 450MHz 256M RAM, with 1million records, the search is around 3~4 seconds for the very first search, and sub-second, usually under 0.5 second. Sorting on one column will be longer, like 7~8 seconds for the first sort. And subseconds with cache. Chris Lu ---

Searching the contents

2005-11-03 Thread Manoj Kr. Sheoran
Hi, I am having 1,00,000 documents in a index but in near future it will be 3 million and more. I am somewhat concerned about the searhing process with this much number of document. I am giving order on some fields of documents. Could anybody tell be the expected result from lucene engine wit