Yet anonther distributed key-value storage system from Douban Inc.
Any memcached client cache interactive with GobeansDB without any modification.
GoBeansDB use vgo
manage dependencies, please install vgo first.
$ cd ${GOPATH}
$ git clone http://github.com/douban/gobeansdb.git src/github.com/douban/gobeansdb
$ cd src/github.com/douban/gobeansdb
$ make
$ make test # unit test
$ make pytest # Integrated test
$ ${GOPATH}/bin/gobeansdb -h
import libmc
mc = libmc.Client(['localhost:7900'])
mc.set("foo", "bar")
mc.get("foo")