mirror of https://github.com/go-redis/redis.git
177 lines
3.4 KiB
Go
177 lines
3.4 KiB
Go
package redis_test
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"gopkg.in/redis.v2"
|
|
)
|
|
|
|
var client *redis.Client
|
|
|
|
func init() {
|
|
client = redis.NewTCPClient(&redis.Options{
|
|
Addr: ":6379",
|
|
})
|
|
client.FlushDb()
|
|
}
|
|
|
|
func ExampleNewTCPClient() {
|
|
client := redis.NewTCPClient(&redis.Options{
|
|
Addr: "localhost:6379",
|
|
Password: "", // no password set
|
|
DB: 0, // use default DB
|
|
})
|
|
|
|
pong, err := client.Ping().Result()
|
|
fmt.Println(pong, err)
|
|
// Output: PONG <nil>
|
|
}
|
|
|
|
func ExampleNewFailoverClient() {
|
|
redis.NewFailoverClient(&redis.FailoverOptions{
|
|
MasterName: "master",
|
|
SentinelAddrs: []string{":26379"},
|
|
})
|
|
}
|
|
|
|
func ExampleClient() {
|
|
if err := client.Set("foo", "bar", 0).Err(); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
v, err := client.Get("hello").Result()
|
|
fmt.Printf("%q %q %v", v, err, err == redis.Nil)
|
|
// Output: "" "redis: nil" true
|
|
}
|
|
|
|
func ExampleClient_Incr() {
|
|
if err := client.Incr("counter").Err(); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
n, err := client.Get("counter").Int64()
|
|
fmt.Println(n, err)
|
|
// Output: 1 <nil>
|
|
}
|
|
|
|
func ExampleClient_Pipelined() {
|
|
cmds, err := client.Pipelined(func(c *redis.Pipeline) error {
|
|
c.Set("key1", "hello1", 0)
|
|
c.Get("key1")
|
|
return nil
|
|
})
|
|
fmt.Println(err)
|
|
set := cmds[0].(*redis.StatusCmd)
|
|
fmt.Println(set)
|
|
get := cmds[1].(*redis.StringCmd)
|
|
fmt.Println(get)
|
|
// Output: <nil>
|
|
// SET key1 hello1: OK
|
|
// GET key1: hello1
|
|
}
|
|
|
|
func ExamplePipeline() {
|
|
pipeline := client.Pipeline()
|
|
set := pipeline.Set("key1", "hello1", 0)
|
|
get := pipeline.Get("key1")
|
|
cmds, err := pipeline.Exec()
|
|
fmt.Println(cmds, err)
|
|
fmt.Println(set)
|
|
fmt.Println(get)
|
|
// Output: [SET key1 hello1: OK GET key1: hello1] <nil>
|
|
// SET key1 hello1: OK
|
|
// GET key1: hello1
|
|
}
|
|
|
|
func ExampleMulti() {
|
|
incr := func(tx *redis.Multi) ([]redis.Cmder, error) {
|
|
s, err := tx.Get("key").Result()
|
|
if err != nil && err != redis.Nil {
|
|
return nil, err
|
|
}
|
|
n, _ := strconv.ParseInt(s, 10, 64)
|
|
|
|
return tx.Exec(func() error {
|
|
tx.Set("key", strconv.FormatInt(n+1, 10), 0)
|
|
return nil
|
|
})
|
|
}
|
|
|
|
client.Del("key")
|
|
|
|
tx := client.Multi()
|
|
defer tx.Close()
|
|
|
|
watch := tx.Watch("key")
|
|
_ = watch.Err()
|
|
|
|
for {
|
|
cmds, err := incr(tx)
|
|
if err == redis.TxFailedErr {
|
|
continue
|
|
} else if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println(cmds, err)
|
|
break
|
|
}
|
|
|
|
// Output: [SET key 1: OK] <nil>
|
|
}
|
|
|
|
func ExamplePubSub() {
|
|
pubsub := client.PubSub()
|
|
defer pubsub.Close()
|
|
|
|
err := pubsub.Subscribe("mychannel")
|
|
_ = err
|
|
|
|
msg, err := pubsub.Receive()
|
|
fmt.Println(msg, err)
|
|
|
|
pub := client.Publish("mychannel", "hello")
|
|
_ = pub.Err()
|
|
|
|
msg, err = pubsub.Receive()
|
|
fmt.Println(msg, err)
|
|
|
|
// Output: subscribe: mychannel <nil>
|
|
// Message<mychannel: hello> <nil>
|
|
}
|
|
|
|
func ExampleScript() {
|
|
setnx := redis.NewScript(`
|
|
if redis.call("get", KEYS[1]) == false then
|
|
redis.call("set", KEYS[1], ARGV[1])
|
|
return 1
|
|
end
|
|
return 0
|
|
`)
|
|
|
|
v1, err := setnx.Run(client, []string{"keynx"}, []string{"foo"}).Result()
|
|
fmt.Println(v1.(int64), err)
|
|
|
|
v2, err := setnx.Run(client, []string{"keynx"}, []string{"bar"}).Result()
|
|
fmt.Println(v2.(int64), err)
|
|
|
|
get := client.Get("keynx")
|
|
fmt.Println(get)
|
|
|
|
// Output: 1 <nil>
|
|
// 0 <nil>
|
|
// GET keynx: foo
|
|
}
|
|
|
|
func Example_customCommand() {
|
|
Get := func(client *redis.Client, key string) *redis.StringCmd {
|
|
cmd := redis.NewStringCmd("GET", key)
|
|
client.Process(cmd)
|
|
return cmd
|
|
}
|
|
|
|
v, err := Get(client, "key_does_not_exist").Result()
|
|
fmt.Printf("%q %s", v, err)
|
|
// Output: "" redis: nil
|
|
}
|