Hello Manav, > Thanks for the reply. Can u elaborate more on how much slow is this > Rest api so that I can get the idea of how to manage my traversals and > interactions.
The cost per interaction is the network cost + transaction cost. You can make this super expensive by, for example, creating one node of a huge graph per request. You can make this relatively cheap by doing coarse-grained operations. > Moreover using javascript will there be any security issues? No. You can't send arbitrary JavaScript, only traversal descriptions. It'll barf otherwise. > I checked out groovy after suggestion of Marko.It looks gud. So groovy can > be used for doing my project if Rest proves slow? No, they're quite different issues. Marko was suggesting that if you don't like Java, then Groovy is an interesting halfway house between Java and the dynamically typed world. The choice is whether you'd use a local Groovy binding (or the Gremlin language which is hosted in Groovy) to access the database directly, or whether you'd still go over the REST API. > One thing more.Lets say I start using anyone of above either Rest or > Groovy.How much problem will it be for me if I found one method not working > for me and I have to move to other? See above. I don't think this is a valid either/or decision. > Thanks for being patient for all of the questions. :) My pleasure - thanks to you for participating in the list! Jim _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

