cassandra-node-bridge
cassandra-node-bridge copied to clipboard
Cassandra-Node Bridge provides a link between Apache Cassandra and Node.js. Access cassandra from Node.js through an asynchronous Javascript interface.
Results
1
cassandra-node-bridge issues
Sort by
recently updated
recently updated
newest added
I've set up and running cassandra_proxy.rb. After that I do the next things in node: var sys = require("sys"); var cassandra = require("cassandra-node-client").create(10000, "localhost"); cassandra.get_uuids(function(x, y) { sys.puts(sys.inspect(x)); sys.puts(sys.inspect(y)); });...