How big are the arrays that you will be needing to store?
Cheers
Kelvin
--
You received this message because you are subscribed to the Google Groups "Gremlin-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to gremlin-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/6e80661b-a740-47ab-af62-e8c76a430f84%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
gremlin> g = TinkerGraph.open().traversal()
==>graphtraversalsource[tinkergraph[vertices:0 edges:0], standard]
gremlin> g.addV().property("visited", "Berlin")
==>v[0]
gremlin> g.V(0L).property(set, "visited", "London").next()
==>v[0]
gremlin> g.V().valueMap(true)
==>[label:vertex,visited:[Berlin,London],id:0]
gremlin> g.V().has("visited", "Berlin")
==>v[0]
gremlin>
To view this discussion on the web visit https://groups.google.com/d/msgid/gremlin-users/c322830d-fa67-44cd-9a7b-d5ddbff71611%40googlegroups.com.
Olav
To unsubscribe from this group and stop receiving emails from it, send an email to gremli...@googlegroups.com.