doozer

Go client driver for doozerd, a consistent, distributed data store

Github星跟踪图

Doozer Client

Note: doozerd is the server.
This is the Go client driver for doozer.

How to use

To install the Go client:

$ go get github.com/ha/doozer

To install the CLI client:

$ go get github.com/ha/doozer/cmd/doozer

To use:

package main

import (
	"github.com/ha/doozer"
	"os"
)

func main() {
	doozer, err := doozer.Dial("localhost:8046")

	if err != nil {
		panic(err)
	}

	myfile, _, _ := doozer.Get("/myfile", nil)
	os.Stdout.Write(myfile)
}

Hacking

You can create a workspace for hacking on the doozer library and command
by doing the following:

$ mkdir doozer
$ cd doozer
$ export GOPATH=`pwd`
$ go get github.com/ha/doozer/...

# ...hack...hack..hack...
$ vim src/github.com/ha/doozer/cmd/doozer/help.go

# rebuild ./bin/doozer
$ go install github.com/ha/doozer/...

License and Authors

Doozer is distributed under the terms of the MIT
License. See LICENSE for details.

Doozer was created by Blake Mizerany and Keith Rarick.
Type git shortlog -s for a full list of contributors.

主要指标

概览
名称与所有者ha/doozer
主编程语言Go
编程语言Go (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2011-04-12 08:50:21
推送于2016-05-04 21:46:24
最后一次提交2013-08-07 10:13:57
发布数14
最新版本名称go.r60 (发布于 )
第一版名称works (发布于 )
用户参与
星数584
关注者数42
派生数101
提交数1.5k
已启用问题?
问题数10
打开的问题数3
拉请求数13
打开的拉请求数2
关闭的拉请求数19
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?