Re: [Neo] Export to XML

2009-06-24 Thread Anders Nawroth
Hi! I was just wondering if there is any existing built in functionality to export the underlying graph created by Neo to XML format? AFAIK, no. Or if someone has done this and has any advice? Maybe it would be interesting for you to look at neo-graphviz:

Re: [Neo] self referential statements

2009-06-24 Thread Anders Nawroth
Hi! This is probably working as expected but why is this constraint necessary? This works as expected, but I think we have to make this explicit in the API docs. I think there would be a performance hit for all graph traversals if relationships to the same node were permitted. It is

Re: [Neo] self referential statements

2009-06-24 Thread Rob Challen
Thanks Anders. On Wed, Jun 24, 2009 at 10:19 AM, Anders Nawroth and...@neotechnology.comwrote: Hi! This is probably working as expected but why is this constraint necessary? This works as expected, but I think we have to make this explicit in the API docs. I think there would be a

Re: [Neo] Graph presentation at school.

2009-06-24 Thread Johan Svensson
On Mon, Jun 22, 2009 at 4:37 PM, Macarsemaca...@gmail.com wrote: On Mon, Jun 22, 2009 at 10:21 AM, Johan Svenssonjo...@neotechnology.com wrote: ... You also run everything in the same transaction. I tried getting some information on transaction and what isolation level the insert/query you

Re: [Neo] [Commits] r2951 - components/neo/trunk/src/java/org/neo4j/impl/shell/apps

2009-06-24 Thread Peter Neubauer
Hi there, this syntax probably deserves a Wiki page wtih exapmles :) /peter GTalk: neubauer.peter Skype peter.neubauer Phone +46 704 106975 LinkedIn http://www.linkedin.com/in/neubauer Twitter http://twitter.com/peterneubauer http://www.neo4j.org - New Energy for

Re: [Neo] [Commits] r2951 - components/neo/trunk/src/java/org/neo4j/impl/shell/apps

2009-06-24 Thread Mattias Persson
Yep, or really good man information... working on it! 2009/6/24 Peter Neubauer peter.neuba...@jayway.se: Hi there, this syntax probably deserves a Wiki page wtih exapmles :) /peter GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn  

Re: [Neo] Neo,Rest,.NET

2009-06-24 Thread Anders Nawroth
Hi! be something I'm not understanding, or it may be that I did not unzip the source files into the correct directories. Shouldn't really matter, as mvn install will make the stuff available to any other Maven project on your computer. I have a main directory (neo-scala-stuff :

[Neo] how to decouple transaction management from access to underlying nodes

2009-06-24 Thread Symeon (Akis) Papadopoulos
Hi all I am a newbie to Neo4j, but as it seems very pertinent to my research interests (web 2.0 mining), therefore I am planning to test it as an infrastructure layer for massive graph analysis. One very basic (even naive) question I have regards the separation between transaction management

Re: [Neo] how to decouple transaction management from access to underlying nodes

2009-06-24 Thread Mattias Persson
Hi! There's (at least) two solutions to this problem. One is that, as you suggest, to have the iterator wrap its methods in transactions in addition to the code that returns the iterator (look at org.neo4j.util.TxIterator in neo-utils component). This solution can be tedious and perhaps not the