0
0

More than 3 years have passed since last update.

go-redisのSMEMBERSの挙動

Posted at
package main

import (
        "fmt"
        "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 main() {
        rc := getRedisClient()
        //key := "sonzaisurukey"
                // ok
        key := "sonzaishinaikey"
                // ng

        v := rc.SMembers(key)
        fmt.Printf("v(%d):%v,%v\n", len(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")
        }
}
  • keyがあってもなくてもエラーにはならない。なくても要素数は0で返る。
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