Re: [Neo4j] Possible functional gap in Lucene indexing?

2010-09-16 Thread Mattias Persson
That can't be done currently. The only way to do it would be to loop through all your indices and check each if it contains your Node. And then you have the problem of which indices exists?. Well, that can't be answered either... the best way there would be to look at the neo4j-store-dir/lucene/

Re: [Neo4j] Bug: LuceneFullTextQueryIndex service ignoring last word/term

2010-09-16 Thread Mattias Persson
I previously wrote that you could override LuceneFulltextIndexService and assign your Analyzer there, but now I see that it can't be done there... it's on a lower level. So as Peter pointed out, one option would be to go with the new index framework where you can specify an analyzer at index

Re: [Neo4j] Bug: LuceneFullTextQueryIndex service ignoring last word/term

2010-09-16 Thread Mattias Persson
Or, a slightly uglier solution: if you are going to use that analyzer for all your fulltext indexing needs then you could modify the source of the index component (very small patch), build a jar and use that instead of the standard one. I attached an example patch (for neo4j-index 1.1). 2010/9/16

Re: [Neo4j] Bug: LuceneFullTextQueryIndex service ignoring last word/term

2010-09-16 Thread Peter Neubauer
Mattias, no patch coming through ... Cheers, /peter neubauer VP Product Development, Neo Technology GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter      http://twitter.com/peterneubauer

Re: [Neo4j] Bug: LuceneFullTextQueryIndex service ignoring last word/term

2010-09-16 Thread Mattias Persson
Oh, I forgot... attachments have a hard time survive the trip to the mailing list: Index: src/main/java/org/neo4j/index/lucene/LuceneFulltextDataSource.java === --- src/main/java/org/neo4j/index/lucene/LuceneFulltextDataSource.java

Re: [Neo4j] Using the REST neo4j

2010-09-16 Thread Jacob Hansson
On Thu, Sep 16, 2010 at 9:25 AM, Mattias Persson matt...@neotechnology.comwrote: 2010/9/15 Jacob Hansson ja...@voltvoodoo.com On Wed, Sep 15, 2010 at 5:37 PM, Jacob Hansson ja...@voltvoodoo.com wrote: Hi Alex, sorry this response took me so long, see responses inline! 2010/9/10

[Neo4j] Neo4j Spatial announced

2010-09-16 Thread Peter Neubauer
Hi Folks, with the great contributions and work of Craig Taverner, Davide Savazzi, Paddy and many others, Neo4j Spatial is starting to take shape. It makes dynamic traversals through any Neo4j graph structure with location data somewhere in the domain data and expose it as Points, Lines or

Re: [Neo4j] rest component branch merge and re-org

2010-09-16 Thread Mattias Persson
2010/9/16 Andreas Kollegger andreas.kolleg...@neotechnology.com Hi Todd (and anyone else working with the rest component in labs), I've just merged in the GraphAlgo branch. Unit tests look good, but it'd be great if you could take a look to see what you think of the state of things. That is