Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-02-05 Thread Jonny Wray
Yep, the resource concept of Compass maps pretty well to the property idea in Neo. Good match as you say. It's been a while since I wrote/test it but yes, I believe it did have transaction support, via integration with Spring. It uses CompassDaoSupport class as a template class and transactions we

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-02-05 Thread Mattias Persson
Compass looks quite nice with its simplified lucene API and support for transactions, so it could might as well be a very good fit to have as an IndexService implementation. Your implementation hasn't got transaction support or am I wrong about that? 2010/1/31 Mattias Persson : > Yep, thanks Jonny

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-31 Thread Mattias Persson
Yep, thanks Jonny... I'll take a look at it as soon as time becomes a purchasable item :) . But seriously, thanks a lot and I'll get back with feedback about it quite soon! 2010/1/31 Peter Neubauer : > Thanks Jonny! > > I am sure Mattias will take a look at it, and we even might decide to > do a s

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-31 Thread Peter Neubauer
Thanks Jonny! I am sure Mattias will take a look at it, and we even might decide to do a small compass component to start with, but let's see! Cheers, /peter neubauer COO and Sales, Neo Technology GTalk: neubauer.peter Skype peter.neubauer Phone +46 704 106975 LinkedIn http:

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-26 Thread Jonny Wray
.. :( > > > -Original Message- > From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] > On > Behalf Of Jonny Wray > Sent: Tuesday, January 26, 2010 1:54 PM > To: Neo user discussions > Subject: Re: [Neo] Lucene full text indexing service: searching mu

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-26 Thread Rick Bullotta
j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Jonny Wray Sent: Tuesday, January 26, 2010 1:54 PM To: Neo user discussions Subject: Re: [Neo] Lucene full text indexing service: searching multiple node keys Yeah, it worked pretty well. I'd used compass in a more normal situation (RDMBS and Hibe

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-26 Thread Jonny Wray
Yeah, it worked pretty well. I'd used compass in a more normal situation (RDMBS and Hibernate) and my experience with it took me that direction. It's a very nice project. I'll dig the code out and look, but I have a feeling I could be embarrassed by it - it was very much a prototype. Jonny On Mo

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-26 Thread Mattias Persson
Yep very nice, maybe we could see if it could be a good "core" component of neo4j. So if someone feels like writing a CompassIndexService and see how it works out it's totally fine by me :) 2010/1/26 Peter Neubauer : > Hi Jonny, > sounds like compass could be a good component integration to add. D

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-25 Thread Peter Neubauer
Hi Jonny, sounds like compass could be a good component integration to add. Do you have some example code that we maybe could put on the wiki or package as a component? Cheers, /peter neubauer COO and Sales, Neo Technology GTalk: neubauer.peter Skype peter.neubauer Phone +46 70

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-25 Thread Jonny Wray
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 e

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-25 Thread Subhash Chandran
Thanks for letting me know. Subhash. On Mon, Jan 25, 2010 at 12:07 PM, Mattias Persson 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. >

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-24 Thread Mattias Persson
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 : > Disclaimer: I am new to both Neo4J and Lucene. > > My question is regardi

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-24 Thread Peter Neubauer
Hi Subhash, in http://code.google.com/p/subwiz/source/browse/neo4jtryout/trunk/src/main/java/org/wiztools/neo4jtryout/NeoUtil.java you are having both the LuceneIndex and LuceneFullte private static NeoService neo = new EmbeddedNeo("neodata"); private static IndexService idx = new Lucene

Re: [Neo] Lucene full text indexing service: searching multiple node keys

2010-01-24 Thread Peter Neubauer
Hi Subhash, in http://code.google.com/p/subwiz/source/browse/neo4jtryout/trunk/src/main/java/org/wiztools/neo4jtryout/NeoUtil.java you are having both the LuceneIndex and LuceneFulltextIndex on the same neo4j instance. Not sure if that works well together ... private static NeoService neo =

[Neo] Lucene full text indexing service: searching multiple node keys

2010-01-24 Thread Subhash Chandran
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 poss