What version of Lucene is required to build h2?

2010-11-15 Thread Chris Aniszczyk (zx)
I'm looking at the build.xml file... it lists lucene 2.2.0, however... the sources reference lucene 3.0... How do I build h2 from scratch? -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to h2-datab...@googlegro

Re: What version of Lucene is required to build h2?

2010-11-15 Thread Sergi Vladykin
Hi, Yes current build.xml is broken. You should manually download lucene 3.0 and add it to the class path instead of 2.2 version. regards, Sergi On 16 ноя, 07:58, "Chris Aniszczyk (zx)" wrote: > I'm looking at the build.xml file... it lists lucene 2.2.0, however... > the sources reference lucen

Re: What version of Lucene is required to build h2?

2010-11-16 Thread Wildam Martin
On Tue, Nov 16, 2010 at 07:50, Sergi Vladykin wrote: > Yes current build.xml is broken. You should manually download lucene > 3.0 and add it to the class path instead of 2.2 version. Ah, thanks for the notice. BTW: Anybody knows if Lucene 3.0 still has issues with words not being found even altho

Re: What version of Lucene is required to build h2?

2010-11-17 Thread Thomas Mueller
Hi, >> Yes current build.xml is broken. I will remove the build.xml file, unless somebody wants to maintain it. Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to h2-datab...@googlegroups.com.

Re: What version of Lucene is required to build h2?

2010-11-18 Thread Matt Bishop
One of the unfortunate aspects of Lucene is that the IndexReader doesn't update itself when the underlying index has been changed by an IndexWriter. You have to reopen the IndexReader to get the updated content. With Lucene 3, the cost of doing this has been improved with the new Near-Real-Time In