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.

23 lines
329 B

2 years ago
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. }
  11. //hexists
  12. func HExist(key string) (bool, error) {
  13. c := GetConn()
  14. defer c.Close()
  15. return redisdb.Bool(c.Do("HEXISTS", key))
  16. }