Registry / database / couchbase-moss

couchbase-moss

JSON →
library0.3.0gogounverified

A fast, persistent, key-value store written in Go.

go get github.com/couchbase/moss
INSTALL
IMPORT
SIG · COUCHBASE-MOSS
C
couchbase-moss
databasegov0.3.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

moss
github.com/couchbase/moss

Open a key-value store, set and get a value

package main import ( "fmt" "github.com/couchbase/moss" ) func main() { store, err := moss.Open("mydb", moss.DefaultStoreOptions) if err != nil { panic(err) } defer store.Close() store.Set([]byte("key"), []byte("value")) val, err := store.Get([]byte("key")) if err != nil { panic(err) } fmt.Println(string(val)) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.3.0latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
8
OpenAI (training)
1
Resources
couchbase-moss — go get couchbase-moss · libregistry