Re: [Neo4j] A Note on Writing Performant Gremlin

2011-09-12 Thread Marko Rodriguez
Hey, > just to be clear, Would it be safe to say that the compile time for > > g.v(0).out.out >> -1 > > would be slower than > > g.v(0).out().out() >> -1 > > and slower than > > g.v(0).outE().inV().outE().inV() >> -1 The fastest would be g.v(0).out().out(). > It is also surprising tha

Re: [Neo4j] A Note on Writing Performant Gremlin

2011-09-12 Thread KanTube
nitude greater for the the condensed notation. thanks for the info. -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-A-Note-on-Writing-Performant-Gremlin-tp3330544p3331302.html Sent from the Neo4j Community Discussions mailing list arc

[Neo4j] A Note on Writing Performant Gremlin

2011-09-12 Thread Marko Rodriguez
Hi Gremlin+Neo4j+OrientDB people, I apologize for the cross list posting, but this is an important piece of information for those using Gremlin with their respective graph databases. I've noticed lots of people use the very friendly notation of Element.key to get the property value of an Elemen