aslib cranfield test collection

2005-09-07 Thread Gusenbauer Stefan
Sorry for that offtopic message but does anyone has experiences with the aslib cranfield test collection or does anyone know where i can get it? thanks in advance stefan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Lucene in 1 week in Dallas

2005-09-07 Thread Erik Hatcher
On Sep 7, 2005, at 7:03 AM, netsql wrote: http://www.javamug.org has a Lucene seminar. So if you are in Dallas Thanks for the announcement :) See ya there! Erik - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: AW: limit return results

2005-09-07 Thread Otis Gospodnetic
Look at the code that comes with Lucene in Action. Here are references, page numbers, etc.: http://www.lucenebook.com/search?query=hitcollector Otis --- Kunemann Frank [EMAIL PROTECTED] wrote: Hi, HitCollector sounds very interesting - do you have an example for how to use it? Frank

Re: limit lucene result

2005-09-07 Thread Yonik Seeley
The Hits object retrieves the documents lazily, so just ask it for the first 100. -Yonik On 9/7/05, haipeng du [EMAIL PROTECTED] wrote: The reason that I want to limit returned result is that I do not want to get out of memory problem. I index lucene with 3 million documents. Sometimes,

Re: Updating the index and searching

2005-09-07 Thread Chris Hostetter
The best advice I can give on this topic is don't open a new IndexReader for every search. There is a lot of caching that goes on under the covers (particularly when you sort by things other then SCORE) which is completely wasted if you open a new IndexReader everytime. If you use Filters, then