Re: [Neo4j] Neo4j performance with >400million nodes

2011-11-06 Thread algecya
anders, thank you very much for reporting back and looking at it! Good luck fixing the bug then -- alican -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-performance-with-400million-nodes-tp3467806p3486237.html Sent from the Neo4j Community Discussi

Re: [Neo4j] Gremlin - how to flatten a tree, and sort

2011-11-06 Thread Tatham Oddie
Marko, > And I'm saying "nasty" with a South African accent so you know its dirty. Thanks to working with Romiko, I'm getting an eerily clear mental image of that. -- Tatham ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/

Re: [Neo4j] SDG 2.0.0.M1 cross-store does not work properly

2011-11-06 Thread Michael Hunger
There is are two examples in the current snapshot, hello-worlds and cineasts (w/o -*) Could you share the use-case + NPE that you've described? Thanks a lot Michael mh$ ls -1 spring-data-neo4j-examples/ cineasts [x] cineasts-aspects cineasts-rest hello-worlds [x] hello-worlds-aspects imdb myr

Re: [Neo4j] Neo4j performance with >400million nodes

2011-11-06 Thread Anders Nawroth
Hi alican, I just want to report back that I was able to reproduce the problem and narrow down the cause a bit. Seems the UI and DB threads are waiting for each other ... haven't got around to fix it though. /anders 2011-11-02 07:08, algecya skrev: > Hi anders, > appreciate your offer very muc

Re: [Neo4j] SDG 2.0.0.M1 cross-store does not work properly

2011-11-06 Thread Marcin Zasepa
Hi Michael, thanks a lot for you fast response. I run the tests against SNAPSHOT and it works. I had also problems with mapping of enums and it works either now. Great job! thanks a lot. BTW: Could you point any docs or examples how to use alternative non-aspectj mapping approach, maybe this appro

[Neo4j] Property loading in Neo4J 1.4

2011-11-06 Thread Rick Bullotta
If a node is accessed, are *all* of its properties loaded into memory? Thanks, Rick ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo4j] REST api get list of all relationship properties (unique)

2011-11-06 Thread Jure Zakotnik
Hi Peter, sounds good, I'll check how to contribute.. Meanwhile I was working on the original question of the thread - getting a list of unique properties used in the relationships. Since the lucene indexer in neo4j always uses nodes or relationships, I don't see a way to extract a list of relati

Re: [Neo4j] Cypher: combining results?

2011-11-06 Thread D. Frej
Andrés, is there an official grammar for e.g. antlr or JavaCC for cypher syntax? Am 06.11.2011 15:11, schrieb Andres Taylor: > On Sun, Nov 6, 2011 at 12:25 PM, Andres Taylor< > andres.tay...@neotechnology.com> wrote: > >> On Nov 6, 2011 10:55 AM, "D. Frej" wrote: >>> Hi, >>> >>> Cypher allows

Re: [Neo4j] Cypher: combining results?

2011-11-06 Thread D. Frej
I have a very simply graph: UserGroup 2 <-[:IS_MEMBER_OF]- UserGroup 1, User 3 UserGroup 1 <-[:IS_MEMBER_OF]- User 1, User 2 And I am trying to get all nodes that are on the same level and below the starting point including the starting point. This works for, e.g. User 3, but not for UserGroup2

Re: [Neo4j] Cypher: combining results?

2011-11-06 Thread Andres Taylor
On Sun, Nov 6, 2011 at 12:25 PM, Andres Taylor < andres.tay...@neotechnology.com> wrote: > > On Nov 6, 2011 10:55 AM, "D. Frej" wrote: > > > > Hi, > > > > Cypher allows to define multiple starting points. Example: > > start n=(1, 2, 3) return n (taken from > > > http://docs.neo4j.org/chunked/stab

Re: [Neo4j] Cypher: combining results?

2011-11-06 Thread Andres Taylor
On Nov 6, 2011 10:55 AM, "D. Frej" wrote: > > Hi, > > Cypher allows to define multiple starting points. Example: > start n=(1, 2, 3) return n (taken from > http://docs.neo4j.org/chunked/stable/query-start.html#start-multiple-nodes-by-id ) > > Can this only be done in the START clause or also in th

[Neo4j] Cypher: combining results?

2011-11-06 Thread D. Frej
Hi, Cypher allows to define multiple starting points. Example: start n=(1, 2, 3) return n (taken from http://docs.neo4j.org/chunked/stable/query-start.html#start-multiple-nodes-by-id) Can this only be done in the START clause or also in the MATCH clause, like this? START principal=node:nodes(N