Hi,
We are running into performace problem as we use lucene. Everything worked
fine till yesterday and today when we starte performance testing we saw an
error. Here are the details of the error
54eda4e1 SystemErr R From Faceted SearchImpl rlinksIndexReader.open(dir)
failed
[9/1/05 17
Shane - could you give us some details on what Global Analysis is and
how it relates to full-text searching?
I googled for it and came up with some heavy duty mathematical stuff,
but did not see a direct relationship with information retrieval.
Erik
On Sep 1, 2005, at 9:36 AM, Shane O
Thank you, Xiaozheng.
Actually the application could be more than 2 threads. And each thread could
add/modify/delete documents anytime (the deleting documents could be added
earlier by another thread), so each thread can not work on its own index
file(thinking about any indexed document could be
Indexing on one indexing file in a multithreaded env needs to be
serialized --you need to synchronize the call to
indexwriter.addDocument(). Otherwise Lucene will throw exceptions. After
all, Lucene uses file-based locking to ensure that only one thread can
modify the same index at the same time.
Hi,
Does anyone know if Lucene supports Global Analysis? I haven't seen any
documentation on it.
Thanks
Shane O'Sullivan