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

RE: Alternate Use of Lucene

2006-03-11 Thread Andrew Schetinin
Hi James, >From one side, it is easy - you simply enumerate all the found objects, and for each object retrieve the field Supervisor, sorting and removing duplicates on the fly. >From the other side, this way you'll get linear performance, and even worse - retrieving fields is not a very fast oper