Lucene in JBoss

2006-05-15 Thread pbatcoi
Hi, does anyone know an up to date integration of Lucene into JBoss. ejIndex - JBoss MBean for Lucene seems to be out of date. Thanks! Stefan and Peter - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Re: Subject indexing and seraching documents with multiple languages

2006-05-09 Thread pbatcoi
Karl, no, you didn't misunderstand. We have to admit that we were not aware of the possibility to use different analyzers for the documents in an index. It seems that we were working to close to the examples and did not spend enough time to RTFM. Thank you for the hint! Grant, considering the an

Subject indexing and seraching documents with multiple languages

2006-05-08 Thread pbatcoi
Hello, we need to index and search documents of multiple languages. Our current approach is: Determine the language of each document before passing it to Lucene and use a Lucene index for each language. This seems to be necessary because the IndexWriter takes an analyzer as parameter. Thus we c

Determine the index of a hit after using MultiSearcher

2005-11-29 Thread pbatcoi
Hello, I am searching over multiple indices using MultiSearcher. Thus I get hits from various indices. Is it possible to determine from which index a hit comes? The solution I found is to store the index in a document's field, but this causes some overhead. I would like to find another solution.