https://github.com/araddon/doozer
Go client driver for doozerd, a consistent, distributed data store
https://github.com/araddon/doozer
Last synced: 5 months ago
JSON representation
Go client driver for doozerd, a consistent, distributed data store
- Host: GitHub
- URL: https://github.com/araddon/doozer
- Owner: araddon
- License: mit
- Fork: true (ha/doozer)
- Created: 2012-09-10T06:23:02.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-09-10T06:24:51.000Z (almost 14 years ago)
- Last Synced: 2024-06-21T11:03:02.469Z (almost 2 years ago)
- Language: Go
- Homepage: https://github.com/ha/doozerd
- Size: 2.45 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Doozer Client
**Note:** [doozerd](/ha/doozerd) is the server.
This is the Go client driver for doozer.
## How to use
To install the Go client:
$ go get github.com/4ad/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)
}
## 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.
[mail]: https://groups.google.com/group/doozer
[LICENSE]: /ha/doozer/blob/master/LICENSE