jason 075d766964 first il y a 3 ans
..
cbdatasource 075d766964 first il y a 3 ans
examples 075d766964 first il y a 3 ans
perf 075d766964 first il y a 3 ans
platform 075d766964 first il y a 3 ans
populate 075d766964 first il y a 3 ans
tools 075d766964 first il y a 3 ans
trace 075d766964 first il y a 3 ans
util 075d766964 first il y a 3 ans
.gitignore 075d766964 first il y a 3 ans
.travis.yml 075d766964 first il y a 3 ans
LICENSE 075d766964 first il y a 3 ans
README.markdown 075d766964 first il y a 3 ans
audit.go 075d766964 first il y a 3 ans
client.go 075d766964 first il y a 3 ans
client_test.go 075d766964 first il y a 3 ans
conn_pool.go 075d766964 first il y a 3 ans
conn_pool_test.go 075d766964 first il y a 3 ans
ddocs.go 075d766964 first il y a 3 ans
observe.go 075d766964 first il y a 3 ans
pools.go 075d766964 first il y a 3 ans
pools_test.go 075d766964 first il y a 3 ans
streaming.go 075d766964 first il y a 3 ans
tap.go 075d766964 first il y a 3 ans
upr.go 075d766964 first il y a 3 ans
users.go 075d766964 first il y a 3 ans
users_test.go 075d766964 first il y a 3 ans
util.go 075d766964 first il y a 3 ans
util_test.go 075d766964 first il y a 3 ans
vbmap.go 075d766964 first il y a 3 ans
vbmap_test.go 075d766964 first il y a 3 ans
views.go 075d766964 first il y a 3 ans
views_test.go 075d766964 first il y a 3 ans

README.markdown

A smart client for couchbase in go

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.

Install

go get github.com/couchbase/go-couchbase

Example

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"})