RE: Eclipse bundle

2008-01-03 Thread Beyer,Nathan
Taking a guess here, I think this question could be rephrased as ... Is there an OSGi bundle(s) the exposes the Lucene APIs and is available in a Maven repository? For OSGi stuff, check out the Eclipse Orbit project [1], which wraps up third-party libraries into OSGi bundles and there is a

RE: thoughts/suggestions for analyzing/tokenizing class names

2007-12-17 Thread Beyer,Nathan
Klaas [mailto:[EMAIL PROTECTED] Sent: Monday, December 17, 2007 11:29 AM To: java-user@lucene.apache.org Subject: Re: thoughts/suggestions for analyzing/tokenizing class names On 15-Dec-07, at 3:14 PM, Beyer,Nathan wrote: I have a few fields that use package names and class names and I've

RE: thoughts/suggestions for analyzing/tokenizing class names

2007-12-17 Thread Beyer,Nathan
that classname:org.apache* would probably be wrong--you might not want to match org.apache-fake.lucene.document regards, -Mike On 17-Dec-07, at 9:39 AM, Beyer,Nathan wrote: Good point. I don't want the sub-package names on their own to match. Text (class name

thoughts/suggestions for analyzing/tokenizing class names

2007-12-15 Thread Beyer,Nathan
I have a few fields that use package names and class names and I've been looking for some suggestions for analyzing these fields. A few examples - Text (class name) - org.apache.lucene.document.Document Queries that would match - org.apache , org.apache.lucene.document Text (class name +

best practices for reloading an index for a searcher

2007-12-06 Thread Beyer,Nathan
I did some searching on the lucene site and wiki, but didn't quite find what I was looking for in regards to a basic approach to how and when to reload index data. I have a long running process that will be continually indexing and concurrently searching the same index and I'm looking for a basic

RE: best practices for reloading an index for a searcher

2007-12-06 Thread Beyer,Nathan
queries at the new searcher, then close the old one and start using the new one. There are some coordination issues here. Also be aware that this will chew up some disk space Hope this helps Erick On Dec 6, 2007 12:43 PM, Beyer,Nathan [EMAIL PROTECTED] wrote: I did some searching