Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-12-03 Thread Matt Luongo
What are the advantages of using HTTP directly over native SDK like the Java one? You have to understand that native runs as as part of the same process. And that's why it's supposed to be faster. Running as part of the app means that you lock the database to one single app (you can't

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-12-01 Thread Tero Paananen
With REST, you have a separate server. Thus multiple applications can use. Or you can access it directly through normal web browser to fix your data. Or even run background jobs against that server. All that is not possible with native. I wouldn't say that. It's not possible using Neo4J APIs

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-12-01 Thread Michael Hunger
Actually that is true with many technologies. to provide a REST-Endpoint Neo4j-Servers you can use: * jruby with sinatra/rails * python * as you said SDN * playframework and scala * clojure (and whatever rest-framework on top) * or even pure netty based high performance servers * or other java

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-12-01 Thread Rick Bullotta
Why not take a look at RingoJS? Would be uber easy to integrate native Neo4J APIs. -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of yobi Sent: Wednesday, November 30, 2011 10:59 PM To: user@lists.neo4j.org Subject: [Neo4j] Will

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-12-01 Thread Dmytrii Nagirniak
On 01/12/2011, at 11:34 PM, Tero Paananen wrote: Spring Data for Neo4J and the rest of the Spring framework (as an example) it's pretty damn easy to provide remote access to a Neo4J data store. Are you saying that your WEB application should become a database server? That is not appropriate

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-12-01 Thread Tero Paananen
On 12/1/2011 10:47 PM, Dmytrii Nagirniak wrote: On 01/12/2011, at 11:34 PM, Tero Paananen wrote: Spring Data for Neo4J and the rest of the Spring framework (as an example) it's pretty damn easy to provide remote access to a Neo4J data store. Are you saying that your WEB application

[Neo4j] Will there ever be a native SDK for Node.js?

2011-11-30 Thread yobi
Have been reading through the Java documentation. Having a native SDK seems to be a big win when interacting with Neo4j. I wonder if you have any plans on making a native SDK for Node.js since apps on Heroku could run on Node.js as well. Thanks Johnny -- View this message in context:

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-11-30 Thread Dmytrii Nagirniak
Have been reading through the Java documentation. Having a native SDK seems to be a big win when interacting with Neo4j. What exactly do you mean by that? With REST API you have number of advantages too. I wonder if you have any plans on making a native SDK for Node.js since apps on Heroku

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-11-30 Thread yobi
What are the advantages of using HTTP directly over native SDK like the Java one? Don't they have a native SDK for Python and Ruby as well (although I think they are just wrappers for tje HTTP API?) Johnny -- View this message in context:

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-11-30 Thread Dmytrii Nagirniak
On 01/12/2011, at 4:32 PM, yobi wrote: What are the advantages of using HTTP directly over native SDK like the Java one? You have to understand that native runs as as part of the same process. And that's why it's supposed to be faster. Running as part of the app means that you lock the

Re: [Neo4j] Will there ever be a native SDK for Node.js?

2011-11-30 Thread Michael Hunger
if you just want to use javascript you can look into rhino. for the REST APO there neo4j,js and juggledb or using the http calls directly hth michael mobile mail please excuse brevity and typos Am 01.12.2011 um 07:06 schrieb Dmytrii Nagirniak dna...@gmail.com: On 01/12/2011, at 4:32 PM,