Subhash, while this ability isn't built into the current IndexService, the indexing in Neo is very extendable/pluggable, and I implemented the functionality you mentioned in some pilot code I wrote a few months ago. I used the compass project (http://www.compass-project.org/) to implement my own extension of the standard IndexService which provides some useful tools on top of raw Lucene, including transaction support in a Spring environment.
I don't have the code in front of me currently but I just wanted to mention that implementing and using such an approach wasn't too hard at all. best, Jonny On Mon, Jan 25, 2010 at 12:03 AM, Subhash Chandran <[email protected]> wrote: > Thanks for letting me know. > > Subhash. > > On Mon, Jan 25, 2010 at 12:07 PM, Mattias Persson < > [email protected] > > wrote: > > > This is currently not possible... the IndexService is meant to be a > > simple lookup index, not a complex query index for such queries. With > > that said it could be possible to add it in the future. > > > > 2010/1/25 Subhash Chandran <[email protected]>: > > > Disclaimer: I am new to both Neo4J and Lucene. > > > > > > My question is regarding: > > > > > > http://bit.ly/4sTBnx > > > > > > In the code above I am using property p:body & p:title for > > > full-text-indexing. When querying the index: > > > > > > idx.getNodes("p:body", searchTerm) > > > > > > I want to query both p:body and p:title at once. Is this possible? > > > -- > > > Regards, > > > Subhash Chandran S > > > > > > http://indiwiz.com/ > > > _______________________________________________ > > > Neo mailing list > > > [email protected] > > > https://lists.neo4j.org/mailman/listinfo/user > > > > > > > > > > > -- > > Mattias Persson, [[email protected]] > > Neo Technology, www.neotechnology.com > > _______________________________________________ > > Neo mailing list > > [email protected] > > https://lists.neo4j.org/mailman/listinfo/user > > > > > > -- > Regards, > Subhash Chandran S > > http://indiwiz.com/ > _______________________________________________ > Neo mailing list > [email protected] > https://lists.neo4j.org/mailman/listinfo/user > _______________________________________________ Neo mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

