Re: Considering lucene

2005-09-30 Thread Erik Hatcher
On Sep 30, 2005, at 1:26 AM, Paul Smith wrote: This requirement is almost exactly the same as my requirement for the log4j project I work on where I wanted to be able to index every row in a text log file to be it's own Document. It works fine, but treating each line as a Document turns ou

about lucene lock

2005-09-30 Thread haipeng du
When I search the lucene, do I need to take care of Lucene lock? I check the api of Lucene, it will call IndexReader.rewrite(). Does this one need a lock for lucene index file? Thanks a lot. -- Haipeng Du Software Engineer Comphealth, Salt Lake City

Re: native lucene

2005-09-30 Thread Andi Vajda
I have heard of it, but I have heard the index files are not compatible with lucene, and I have heard it is slow. It is generally twice as fast as Java Lucene and twice as slow as CLucene, a fully native C++ port. As for the index file incompatibility, I seriously doubt it since PyLucene is

Re: native lucene

2005-09-30 Thread Erik Hatcher
On Sep 30, 2005, at 1:55 PM, [EMAIL PROTECTED] wrote: I have heard of it, but I have heard the index files are not compatible with lucene, and I have heard it is slow. That is incorrect. You're thinking of LuPy, which is a pure native Python version of Lucene with some known incompatibili

Re: native lucene

2005-09-30 Thread Otis Gospodnetic
You may be mixing that with Lupy. Check this: http://www.google.com/search?q=pylucene Otis --- [EMAIL PROTECTED] wrote: > > I have heard of it, but I have heard the index files are not > compatible > with lucene, and I have heard it is slow. > > Where can I get some accurate metrics. > > Erik

Re: native lucene

2005-09-30 Thread pmres
I have heard of it, but I have heard the index files are not compatible with lucene, and I have heard it is slow. Where can I get some accurate metrics. Erik, have you seen a project that is using it. > > On Sep 30, 2005, at 1:35 PM, [EMAIL PROTECTED] wrote: > >> We are trying to replace an old

Re: native lucene

2005-09-30 Thread Erik Hatcher
On Sep 30, 2005, at 1:35 PM, [EMAIL PROTECTED] wrote: We are trying to replace an old search engine (amberfish) with lucene. The program is a perl program that calls the search engine so we need a command line version of lucene. To make the call fast we need to have a native version of lucen

native lucene

2005-09-30 Thread pmres
We are trying to replace an old search engine (amberfish) with lucene. The program is a perl program that calls the search engine so we need a command line version of lucene. To make the call fast we need to have a native version of lucene also. I have heard of projects using GCJ and was wondering