Registry / database / memcachier-mc

memcachier-mc

JSON →
library2.0.1+incompatiblegogounverified

Package mc is a memcache client for Go supporting binary protocol and SASL authentication.

go get github.com/memcachier/mc
INSTALL
IMPORT
SIG · MEMCACHIER-MC
M
memcachier-mc
databasegov2.0.1+incompatible
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.

mc
github.com/memcachier/mc

Connects to a memcache server and sets/gets a key.

package main import ( "fmt" "github.com/memcachier/mc" ) func main() { client := mc.NewMC("localhost:11211", "", "") err := client.Set(&mc.Item{Key: "foo", Value: []byte("bar")}) if err != nil { panic(err) } item, err := client.Get("foo") if err != nil { panic(err) } fmt.Printf("Value: %s\n", item.Value) }
Debug
Known issues
gotchaVersion 2.0.1+incompatible indicates Go module compatibility issues
fix
Use go get with -incompatible flag or consider alternative clients
affects: 2.0.1+incompatible
Upgrade
Version history
2.0.1+incompatiblelatest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
11 hits · last 30 days
node
10
Resources
memcachier-mc — go get memcachier-mc · libregistry