1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-29 17:41:15 +03:00

Add script example to the README.

This commit is contained in:
Vladimir Mihailenco
2013-10-15 13:55:00 +03:00
parent 1ee83d1eff
commit 054c21e571
2 changed files with 36 additions and 6 deletions

View File

@ -152,12 +152,12 @@ func ExampleScript() {
defer client.Close()
setnx := redis.NewScript(`
if redis.call("get", KEYS[1]) == false then
redis.call("set", KEYS[1], ARGV[1])
return 1
end
return 0
`)
if redis.call("get", KEYS[1]) == false then
redis.call("set", KEYS[1], ARGV[1])
return 1
end
return 0
`)
run1 := setnx.Run(client, []string{"keynx"}, []string{"foo"})
fmt.Println(run1.Val().(int64), run1.Err())