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

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