[Neo] Load hugh graph

2009-08-26 Thread Vanessa Junquero Trabado
Ok. The speed has increased a lot, but if I remove the property RelationshipType of the edges, I have the following problem when I try to get the type of a relationship: My code is: iter = neo.getRelationshipIds(eNode).iterator(); long rel = iter.next();

Re: [Neo] Question about RDF

2009-08-26 Thread Mattias Persson
Hi Oleg, Take a look at the neo-rdf and neo-rdf-sail components, they are designed to turn neo4j into a triple/quad store! http://components.neo4j.org/neo-rdf/ http://components.neo4j.org/neo-rdf-sail/ The neo-rdf-sail component is optional and just makes you use the neo-rdf as a SAIL. /

Re: [Neo] Load hugh graph

2009-08-26 Thread Mattias Persson
Please use the name() method on the RelationshipType to print the actual name of it... and also as equality tests between relationship types. See http://api.neo4j.org/current/org/neo4j/api/core/RelationshipType.html for more information about that. 2009/8/26 Vanessa Junquero Trabado

Re: [Neo] Question about RDF

2009-08-26 Thread Oleg Aravin
Mattias thank you for you response. I look this components. Can you tell how can i transform com.hp.hpl.jena.rdf.model.Model to neo4j ? On Wed, Aug 26, 2009 at 12:36 PM, Mattias Persson matt...@neotechnology.com wrote: Hi Oleg, Take a look at the neo-rdf and neo-rdf-sail components, they

Re: [Neo] Question about RDF

2009-08-26 Thread Oleg Aravin
Thank you Olivier! ___ Neo mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo] Question about RDF

2009-08-26 Thread Olivier Rossel
feel free to give us feedback on this list about your success in RDF management with neo4j. On Wed, Aug 26, 2009 at 11:43 AM, Oleg Aravinoara...@griddynamics.com wrote: Thank you Olivier! ___ Neo mailing list User@lists.neo4j.org

Re: [Neo] Question about RDF

2009-08-26 Thread Mattias Persson
Great chipping in there Olivier with the last peace of this puzzle! 2009/8/26 Olivier Rossel olivier.ros...@gmail.com: feel free to give us feedback on this list about your success in RDF management with neo4j. On Wed, Aug 26, 2009 at 11:43 AM, Oleg Aravinoara...@griddynamics.com wrote:

Re: [Neo] Question about RDF

2009-08-26 Thread Oleg Aravin
:) ___ Neo mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo] NeoServiceLifecycle in OSGi

2009-08-26 Thread Andreas Kollegger
Hi Mattias, Thanks for the class. I had started to code up a similar approach when it occurred to me that I should first look whether an implementation existed. I also would prefer renaming the current implementation to NeoServiceLifecycleImpl and adding the interface, but am reluctant to

Re: [Neo] NeoServiceLifecycle in OSGi

2009-08-26 Thread Mattias Persson
2009/8/26 Andreas Kollegger akolleg...@tembopublic.org: Hi Mattias, Thanks for the class. I had started to code up a similar approach when it occurred to me that I should first look whether an implementation existed. I also would prefer renaming the current implementation to

Re: [Neo] When does a Traverser traverse?

2009-08-26 Thread Martin Filipczyk
Hi Emil, you could add this sentence (or an improved version) to Traverser's page in Neo API: A traverser's result set (that is, all the nodes the traverser will return) is not build at once (e.g. at its initialization) but on every invokation of iterator().next() the traverser visits yet