Re: Index File

2004-11-15 Thread Luke Shannon
r all your help, Luke - Original Message - From: "Luke Francl" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 12:18 PM Subject: Re: Index File > As long as you are closing your IndexSearchers when you

Re: Index File

2004-11-15 Thread Luke Francl
As long as you are closing your IndexSearchers when you are done with them you should not have problems with file handles. When using Lucene 1.2 (pre-compound file format) on Windows, I ran into this problem because Windows only lets an application open something like 1000 file handles. On Unix the

Re: Index File

2004-11-15 Thread Luke Shannon
quot;Lucene Users List" <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 11:03 AM Subject: Re: Index File > On Mon, 2004-11-15 at 09:52, Luke Shannon wrote: > > Once this was modified to create a new IndexerSearch for every search > > request, all my problems went away. &

Re: Index File

2004-11-15 Thread Luke Francl
On Mon, 2004-11-15 at 09:52, Luke Shannon wrote: > Once this was modified to create a new IndexerSearch for every search > request, all my problems went away. Be careful with this. You could conceivably run out of file handles. This problem got a lot better in Lucene 1.3 with the compound file for

Re: Index File

2004-11-15 Thread Luke Shannon
ll my problems went away. - Original Message - From: "Luke Francl" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 10:39 AM Subject: RE: Index File > On Fri, 2004-11-12 at 19:07, Richard Greenane wrote:

RE: Index File

2004-11-15 Thread Luke Francl
On Fri, 2004-11-12 at 19:07, Richard Greenane wrote: > You might wat to look at LUKE @ http://www.getopt.org/luke/ > A great tool for checking the index to make sure that everything is > there There is also a web-based tool that you can run in your servlet container called LIMO. I've added some qu

RE: Index File

2004-11-12 Thread Richard Greenane
You might wat to look at LUKE @ http://www.getopt.org/luke/ A great tool for checking the index to make sure that everything is there Regards Richard -Original Message- From: Luke Shannon [mailto:[EMAIL PROTECTED] Sent: 12 November 2004 23:54 To: Lucene Users List Subject: Index File

Re: Index File

2004-11-12 Thread Otis Gospodnetic
If you add a Document to the index after you've opened an IndexSearcher/Reader, your IndexSearcher/Reader will not see it. You have to open a new IS/R to see the newly added Documents. This is often covered on this list... I must have added this to Lucene FAQ at jGuru, too. Otis --- Luke Shanno

RE: Index-file locking while searching?

2003-02-27 Thread Biswas, Goutam_Kumar
h version you tested this with. Thanks. Regards, -goutam- -Original Message- From: Otis Gospodnetic [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 10:17 AM To: Lucene Users List Subject: Re: Index-file locking while searching? Hello, I think you didn't set that system

Re: Index-file locking while searching?

2003-02-23 Thread Otis Gospodnetic
Hello, I think you didn't set that system property properly, or maybe you are using some old Lucene release that does not have this functionality. I just checked the source of FSDirectory, and the code looks right. Otis --- "Giri, Sandeep" <[EMAIL PROTECTED]> wrote: > Hi! > I don't want to give