LoginSignup
0
0

More than 3 years have passed since last update.

go-redisでIncr

Posted at
package main


import (
        "fmt"
        "strconv"
        "time"
        "github.com/go-redis/redis"
)

func getRedisClient() (*redis.Client) {
        client := redis.NewClient(&redis.Options{
                Addr:     "localhost:6379",
                Password: "", // no password set
                DB:       0,  // use default DB
        })  
        return client
}

func check(key string) {
        rc := getRedisClient()
        v := rc.Incr(key)
        fmt.Printf("key:%v,v(%d):%v,%v\n", key, v.Val(), v.Err(), v.Val())

        if v.Err() != nil {
                fmt.Print("error is not nil\n")
        }   
        if v.Err() == redis.Nil {
                fmt.Print("redis.Nil is coming\n")
        }   
}

func main() {
        ts := strconv.Itoa(int(time.Now().Unix()))
        key := "thekey:"+ts
        check(key)
        check(key)
}
$ go run main.go
key:thekey:1584105149,v(1):<nil>,1
key:thekey:1584105149,v(2):<nil>,2
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0