gitea/vendor/github.com/couchbase/go-couchbase
2021-02-28 18:08:33 -05:00
..
.gitignore [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
.travis.yml [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
audit.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
client.go go1.16 (#14783) 2021-02-28 18:08:33 -05:00
conn_pool.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
ddocs.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
go.mod [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
LICENSE [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
observe.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
pools.go go1.16 (#14783) 2021-02-28 18:08:33 -05:00
port_map.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
README.markdown [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
streaming.go go1.16 (#14783) 2021-02-28 18:08:33 -05:00
tap.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
upr.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
users.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
util.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
vbmap.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00
views.go [Vendor] update macaron related (#13409) 2020-11-03 08:04:09 +02:00

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