Re: [Neo4j] Traverse Order By

2011-08-10 Thread sometime
-community-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242058.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo

Re: [Neo4j] Traverse Order By

2011-08-10 Thread Igor Dovgiy
-community-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242058.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo

Re: [Neo4j] Traverse Order By

2011-08-10 Thread Michael Hunger
in real time and the application should not block the base. Maybe somehow I can make request to the application by URL? Or some way I can make request to traverse the base without locking? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Traverse

Re: [Neo4j] Traverse Order By

2011-08-10 Thread sometime
I found the solution. Initialization should be done like this: GraphDatabaseService graphDb = new EmbeddedReadOnlyGraphDatabase(/home/sometime/neo4j/data/graph.db); -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242431

Re: [Neo4j] Traverse Order By

2011-08-10 Thread Michael Hunger
= new EmbeddedReadOnlyGraphDatabase(/home/sometime/neo4j/data/graph.db); -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242431.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com

Re: [Neo4j] Traverse Order By

2011-08-10 Thread Michael Hunger
-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242487.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo4j] Traverse Order By

2011-08-10 Thread Peter Neubauer
? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242058.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo4j mailing list User

Re: [Neo4j] Traverse Order By

2011-08-10 Thread Michael Hunger
.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209366p3242058.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] Traverse Order By

2011-07-29 Thread sometime
to get this sorted? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Traverse-Order-By-tp3209364p3209364.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com. ___ Neo4j mailing

[Neo4j] Traverse Order By

2011-07-29 Thread Виктор Донсков
Hi! For example, we have social graph: http://www.donskov.net/graph.jpg Nodes is humans. If the nodes have a relation - so they are friends. I need to get all friends friends and all friends friends friends etc. on node 4 (see example). I post this: { order: breadth_first,

Re: [Neo4j] Traverse Order By

2011-07-29 Thread Jim Webber
Hey, Retrieving popular nodes not directly possible with the REST API. Even in Java, you'd have to sort your result set manually since you don't know ahead of time how the search is going to traverse your graph. It is only once you have your result set (which may be large) that you can sort,