Fixed syntax in "Getting started" example

Now correctly demonstrates how to do error-handling on a "client.set()" command
This commit is contained in:
jahfer 2013-01-19 11:31:23 -05:00
parent 4ef326c3ab
commit 559b2b27a7
1 changed files with 7 additions and 2 deletions

View File

@ -32,10 +32,15 @@ Let's start with connecting to Redis:
Then we can start sending commands:
if err := client.Set("foo", "bar"); err != nil { panic(err) }
set := client.Set("foo", "bar");
if err := set.Err(); err != nil {
panic(set.Err())
}
get := client.Get("foo")
if err := get.Err(); err != nil { panic(err) }
if err := get.Err(); err != nil {
panic(err)
}
fmt.Println(get.Val())
We can also pipeline two commands together: