[ANN] Limax 0.2

2007-07-21 Thread karl wettin
Limax is a Java 1.5 @annotation library for object oriented Lucene applications, distributed under the Apache2 Licence. The API is inspired by the Sleepycat BDB implementation. It can do pretty much anything Hibernate can, and more. * Binds Java classes to the UML 1.4 class model semantics.

Re: [RegexQuery] how to check what words were founded in particulary Documents ?

2007-07-21 Thread mhzmark
To begin with, thanks for Yours quick response. I am still trying write this code and I've already written this one: import org.apache.lucene.analysis.standard.StandardAnalyzer; import org.apache.lucene.store.*; import org.apache.lucene.index.*; import org.apache.lucene.document.*; import org.apa

Re: [RegexQuery] how to check what words were founded in particulary Documents ?

2007-07-21 Thread Mark Miller
StandardAnalyzer lowercases terms. The term you pass to the term enum has an upper case character. You really need to be careful if you are going to use an analyzer to store and then a term enum to cycle through...the term you pass the term enum must match the output of the analyzer. - Mark

Re: [RegexQuery] how to check what words were founded in particulary Documents ?

2007-07-21 Thread mhzmark
You are right. After I changed "Cat Cot Cit Cet" to "cat cot cit cet", it works very good :)I see that there is quite a lot of knowledge to acquire in order to be familiar with this technology... Thank You ! > StandardAnalyzer lowercases terms. The term you pass to the term enum > has an upper

Lucene indexing for PDM system like Windchill

2007-07-21 Thread Dmitry
Folks, Trying to integrate PDM system : WTPart obejct with Lucene indexing search framework. Part of the work is integration with persistent layer + indeces storage+ mysql Could not find a good solution ... please advice thanks, DT www.ejinz.com search engine -

Re: Lucene indexing for PDM system like Windchill

2007-07-21 Thread karl wettin
22 jul 2007 kl. 04.19 skrev Dmitry: Trying to integrate PDM system : WTPart obejct with Lucene indexing search framework. Part of the work is integration with persistent layer + indeces storage+ mysql You have a product data management software of some sort that use MySQL via Hibernate