You probably forgot to close an IndexWriter?
Well, I wish it were that easy...I open one IndexWriter to write the
documents to the index after it is created, and then call writer.optimize()
and writer.close(). Your suggestion is a good one in that, from what I've
read, the writer needs to be clo
On Thu, 2006-08-31 at 19:34 -0700, Philip Brown wrote:
karl wettin-3 wrote:
> >
> > On Thu, 2006-08-31 at 15:24 -0700, Philip Brown wrote:
> >>
> >> I'm getting the following error trying to instantiate an IndexModifier
> >> on a RAMDirectory index:
> >>
> >> java.io.IOException: Lock obtain tim
Well, I wish it were that easy...I open one IndexWriter to write the
documents to the index after it is created, and then call writer.optimize()
and writer.close(). Your suggestion is a good one in that, from what I've
read, the writer needs to be closed to release the lock file. Apparently,
the
On Thu, 2006-08-31 at 15:24 -0700, Philip Brown wrote:
>
> I'm getting the following error trying to instantiate an IndexModifier
> on a RAMDirectory index:
>
> java.io.IOException: Lock obtain timed out:
> [EMAIL PROTECTED]
You probably forgot to close an IndexWriter?
---