go-couchbase

Couchbase client in Go

  • Owner: couchbase/go-couchbase
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

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

Main metrics

Overview
Name With Ownercouchbase/go-couchbase
Primary LanguageGo
Program languageGo (Language Count: 1)
Platform
License:MIT License
所有者活动
Created At2012-01-19 22:52:08
Pushed At2025-08-25 23:31:26
Last Commit At2022-02-09 22:20:35
Release Count2
Last Release Namev0.1.1 (Posted on 2021-10-27 15:05:03)
First Release Namev0.1.0 (Posted on 2021-04-28 15:22:18)
用户参与
Stargazers Count322
Watchers Count26
Fork Count88
Commits Count570
Has Issues Enabled
Issues Count55
Issue Open Count39
Pull Requests Count16
Pull Requests Open Count1
Pull Requests Close Count23
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private