1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-17 20:17:02 +03:00

add BLPop example

This commit is contained in:
Leonid Shagabutdinov 2015-11-24 13:09:53 +06:00
parent 7ea220f54d
commit d9278e3d74

View File

@ -109,6 +109,21 @@ func ExampleClient_Incr() {
// Output: 1 <nil>
}
func ExampleClient_BLPop() {
if err := client.RPush("queue", "message").Err(); err != nil {
panic(err)
}
// use `client.BLPop(0, "queue")` for infinite waiting time
result, err := client.BLPop(1*time.Second, "queue").Result()
if err != nil {
panic(err)
}
fmt.Println(result[0], result[1])
// Output: queue message
}
func ExampleClient_Scan() {
client.FlushDb()
for i := 0; i < 33; i++ {