Posts

Showing posts from January, 2015

Fun with Graphs

Some years ago I worked for a GraphDB company. So one of my side projects at Couchbase is an implementation of Tinkerpop's Blueprints GraphDB API ( http://www.tinkerpop.com ) on top of the Couchbase Document Database. The source code of this project was published here: https://github.com/dmaier-couchbase/cb-graph Important is that the implementation is not yet published as a stable version. So there is still work in progress in order to test, stabilize and improve it. Anyway: Let's have a little bit fun with Graphs! The first thing you want to do is to configure the connection to your Couchbase cluster. If you checkout the source code then there is a 'couchbase.properties' file which needs to be modified regarding your environment: cb.con.hosts=192.168.56.104,192.168.56.105,192.168.56.106 cb.con.port=8091 cb.con.bucket.name=graph cb.con.bucket.pwd=test cb.timeout.op=30000 cb.admin.user=couchbase cb.admin.pwd=couchbase cb.view.designdoc=graph_views cb