- Notifications
You must be signed in to change notification settings - Fork92
couchbase/go-couchbase
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is aunoffical version of a Couchbase Golang client. If you arelooking for theOffical Couchbase Golang client please see[CB-go])[https://github.com/couchbaselabs/gocb].
This is an evolving package, but does provide a useful interface to acouchbase server including all of thepool/bucket discovery features, compatible key distribution with otherclients, and vbucket motion awareness so application can continue tooperate during rebalances.
It also supports view querying with source node randomization so youdon'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"})