Improve pipelined example.

This commit is contained in:
Vladimir Mihailenco 2013-11-04 09:47:36 +02:00
parent eaf97f5a30
commit bead8d1ea2
1 changed files with 9 additions and 7 deletions

View File

@ -38,13 +38,13 @@ func ExampleClient() {
defer client.Close() defer client.Close()
set := client.Set("foo", "bar") set := client.Set("foo", "bar")
fmt.Println(set.Err(), set.Val()) fmt.Println(set.Val(), set.Err())
get := client.Get("foo") get := client.Get("foo")
fmt.Println(get.Err(), get.Val()) fmt.Println(get.Val(), get.Err())
// Output: <nil> OK // Output: OK <nil>
// <nil> bar // bar <nil>
} }
func ExampleClient_Pipelined() { func ExampleClient_Pipelined() {
@ -55,10 +55,12 @@ func ExampleClient_Pipelined() {
cmds, err := client.Pipelined(func(c *redis.Pipeline) { cmds, err := client.Pipelined(func(c *redis.Pipeline) {
c.Set("key1", "hello1") c.Set("key1", "hello1")
c.Get("key2") c.Get("key1")
}) })
fmt.Println(cmds, err) set := cmds[0].(*redis.StatusCmd)
// Output: [SET key1 hello1: OK GET key2: (nil)] (nil) get := cmds[1].(*redis.StringCmd)
fmt.Println(set, get, err)
// Output: SET key1 hello1: OK GET key1: hello1 <nil>
} }
func ExamplePipeline() { func ExamplePipeline() {