Registry / database / mediocregopher-radix-v3

mediocregopher-radix-v3

JSON →
library3.8.1gogounverified

Package radix implements all functionality needed to work with Redis, including cluster, pubsub, sentinel, scanning, and Lua scripting.

go get github.com/mediocregopher/radix/v3
INSTALL
IMPORT
SIG · MEDIOCREGOPHER-RAD
M
mediocregopher-radix-v3
databasegov3.8.1
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.

radix
github.com/mediocregopher/radix/v3

Connects to Redis and retrieves a key's value.

package main import ( "context" "fmt" "github.com/mediocregopher/radix/v3" ) func main() { conn, err := radix.Dial("tcp", "localhost:6379") if err != nil { panic(err) } defer conn.Close() var val string conn.Do(radix.Cmd(&val, "GET", "key")) fmt.Println(val) }
Debug
Known issues

No known issues recorded.

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

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
OpenAI (training)
1
Resources
mediocregopher-radix-v3 — go get mediocregopher-radix-v3 · libregistry