Alternate Use of Lucene

2006-03-10 Thread James Cook
Is there a technique, using Lucene, to retrieve the remaining index values from the results of a query? Here is a better explanation of the question. I have various fields that have been indexed on a particular collection of Java POJO's. For example, an Employee object may have the following fiel

RE: Alternate Use of Lucene

2006-03-11 Thread Andrew Schetinin
a very fast operation. But there is no other way to do it in Lucene, AFAIK. Lucene was not designed for such usage. Best Regards, Andrew -Original Message- From: James Cook [mailto:[EMAIL PROTECTED] Sent: Friday, March 10, 2006 8:39 PM To: java-user@lucene.apache.org Subject: Alternate Us

Re: Alternate Use of Lucene

2006-03-12 Thread Erik Hatcher
Representing an object graph in Lucene is not straightforwardly possible. I recommend you consider flattening your object graph in order to index it using Lucene. This will denormalize it, but that is not a problem. Erik On Mar 10, 2006, at 1:39 PM, James Cook wrote: Is there