Are you sure you want to delete this task? Once this task is deleted, it cannot be recovered.
|
5 years ago | |
---|---|---|
.. | ||
.gitignore | 6 years ago | |
.travis.yml | 6 years ago | |
LICENSE | 6 years ago | |
README.markdown | 6 years ago | |
audit.go | 6 years ago | |
client.go | 5 years ago | |
conn_pool.go | 5 years ago | |
ddocs.go | 6 years ago | |
observe.go | 6 years ago | |
pools.go | 5 years ago | |
port_map.go | 5 years ago | |
streaming.go | 5 years ago | |
tap.go | 6 years ago | |
upr.go | 6 years ago | |
users.go | 6 years ago | |
util.go | 6 years ago | |
vbmap.go | 6 years ago | |
views.go | 6 years ago |
This is a unoffical version of a Couchbase Golang client. If you are
looking for the Offical Couchbase Golang client please see
[CB-go])[https://github.com/couchbaselabs/gocb].
This is an evolving package, but does provide a useful interface to a
couchbase server including all of the
pool/bucket discovery features, compatible key distribution with other
clients, and vbucket motion awareness so application can continue to
operate during rebalances.
It also supports view querying with source node randomization so you
don't bang on all one node to do all the work.
go get github.com/couchbase/go-couchbase
c, err := couchbase.Connect("http://dev-couchbase.example.com:8091/")
if err != nil {
log.Fatalf("Error connecting: %v", err)
}
pool, err := c.GetPool("default")
if err != nil {
log.Fatalf("Error getting pool: %v", err)
}
bucket, err := pool.GetBucket("default")
if err != nil {
log.Fatalf("Error getting bucket: %v", err)
}
bucket.Set("someKey", 0, []string{"an", "example", "list"})
No Description
Go SVG JavaScript Vue Roff other