redis操作
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
198 B

2 years ago
2 years ago
  1. package redis
  2. import (
  3. redisdb "github.com/gomodule/redigo/redis"
  4. )
  5. //exists
  6. func Exist(key string) (bool, error) {
  7. c := GetConn()
  8. defer c.Close()
  9. return redisdb.Bool(c.Do("EXISTS", key))
  10. }