Skip to content

Work in progress on a social graph app built with Node.js & Cassandra

Notifications You must be signed in to change notification settings

maedhroz/node.js-graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

node.js-graph

Work in progress on a social graph built with Node.js & Cassandra

To run it, you'll need to install restify and node-cassandra-client...

npm install restify
npm install cassandra-client

...and you'll need to point the client in graph.js to a Cassandra cluster where you've created something like...

create keyspace Graphs with placement_strategy = 'SimpleStrategy' and strategy_options = {replication_factor : 2};
use Graphs;
create column family Following with column_type = 'Standard' and comparator = 'LongType' and default_validation_class = 'LongType' and key_validation_class = 'LongType' and rows_cached = 0.0 and keys_cached = 0.0 and gc_grace = 259200;

About

Work in progress on a social graph app built with Node.js & Cassandra

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published