node_cassandra icon indicating copy to clipboard operation
node_cassandra copied to clipboard

node.js addon for cassandra

Results 6 node_cassandra issues
Sort by recently updated
recently updated
newest added

i extended the cassandra bindings with more save signals. while tesitng a ran into some state bugs, mostly related tho columnfamilies not beeing ready and unsave signaling on the client...

I took an initial pass at attempting to document the public classes. You can see it here: http://rstacruz.github.com/node_cassandra/ To generate documentation (`npm install -g coffee-script` and _jsdoc-toolkit_ required): ``` $...

Hello. Under node.js 0.8.0, npm installs it, however it cannot be used; calling it fails with ... Error: The "sys" module is now called "util". ... (/usr/local/lib/node_modules/cassandra/lib/cassandra.js:16:11) Are you planning...

On line 64 of cassandra.js ( https://github.com/yukim/node_cassandra/blob/master/lib/cassandra.js ). "this.emit('error', err);" An infinite recursion will occur. This is simply fixed by changing "this" to "self".

The should be an option to expose timestamp and TTL when doing a get(). Right now they're just ignored... ``` col = res[key][i].column; obj[key][col.name] = col.value; // col.timestamp // col.ttl...

Just wanted to say well done.. Worked right out of the "box" and i havent found any issues yet.. Thanks!