Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/couchbase/go-couchbase
Couchbase client in Go
https://github.com/couchbase/go-couchbase
Last synced: about 2 months ago
JSON representation
Couchbase client in Go
- Host: GitHub
- URL: https://github.com/couchbase/go-couchbase
- Owner: couchbase
- License: mit
- Created: 2012-01-19T22:52:08.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2024-01-15T07:51:21.000Z (11 months ago)
- Last Synced: 2024-10-25T04:09:59.507Z (about 2 months ago)
- Language: Go
- Homepage: https://godoc.org/github.com/couchbase/go-couchbase
- Size: 2.23 MB
- Stars: 321
- Watchers: 27
- Forks: 92
- Open Issues: 41
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
- Audit: audit.go
Awesome Lists containing this project
- awesome-go - go-couchbase - Couchbase client in Go. (Database Drivers / NoSQL Database Drivers)
- awesome-go-storage - go-couchbase - Couchbase client in Go (Database Drivers)
- awesome-go - go-couchbase - Couchbase client in Go - ★ 282 (Database Drivers)
- awesome-go-extra - go-couchbase - 01-19T22:52:08Z|2022-04-19T12:41:18Z| (Generators / NoSQL Database Drivers)
- awesome-go-storage - go-couchbase - Couchbase client in Go (Database Drivers)
README
# 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](http://www.couchbase.com/) 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"})