Re: A Searcher with timeout

2007-12-16 Thread Moreno Carullo
Thanks you all. Do you think such a feature will ever be included in Lucene "standard"? MC On 12/15/07, Timo Nentwig <[EMAIL PROTECTED]> wrote: > On Friday 14 December 2007 16:56:07 Sean Timm wrote: > > See LUCENE-997 > > https://issues.apache.org/jira/browse/LUCENE-997 > > I actually have had th

Re: A Searcher with timeout

2007-12-15 Thread Timo Nentwig
On Friday 14 December 2007 16:56:07 Sean Timm wrote: > See LUCENE-997 > https://issues.apache.org/jira/browse/LUCENE-997 I actually have had this problem (ran into a synchronized{} bottleneck in FSDirectory) and "fixed" it by introducing a pool of Searchers (each allocates memory and each holds

Re: A Searcher with timeout

2007-12-14 Thread Grant Ingersoll
See https://issues.apache.org/jira/browse/LUCENE-997 On Dec 14, 2007, at 2:07 AM, Moreno Carullo wrote: Hi all, I'm going to implement a way to start a search on Lucene with a user- defined timeout. This is really useful when you have to deal with very strict SLA, and for what I have seen

Re: A Searcher with timeout

2007-12-14 Thread Sean Timm
See LUCENE-997 https://issues.apache.org/jira/browse/LUCENE-997 -Sean Moreno Carullo wrote: Hi all, I'm going to implement a way to start a search on Lucene with a user-defined timeout. This is really useful when you have to deal with very strict SLA, and for what I have seen from the source co

A Searcher with timeout

2007-12-13 Thread Moreno Carullo
Hi all, I'm going to implement a way to start a search on Lucene with a user-defined timeout. This is really useful when you have to deal with very strict SLA, and for what I have seen from the source code, this feature is still missing. Has anyone start doing something similar? Does my future pat