Skip to content

ha/doozer

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages