123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- // Copyright 2019 github.com. All rights reserved.
- // Use of this source code is governed by github.com.
- package redis
- import (
- "time"
- )
- func (p *Redis) Get(key string) (res string, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.Get(key).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.Get(key).Result()
- }
- func (p *Redis) Set(key string, value interface{}) (res string, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.Set(key, value, 0).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.Set(key, value, 0).Result()
- }
- func (p *Redis) SetEx(key string, seconds int64, value interface{}) (res string, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.Set(key, value, time.Duration(seconds)*time.Second).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.Set(key, value, time.Duration(seconds)*time.Second).Result()
- }
- func (p *Redis) MGet(keys ...string) (res []string, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- vals := make([]interface{}, len(keys))
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- if vals, err = p.cclient.MGet(keys...).Result(); err != nil {
- return res, err
- }
- // 转为[]string
- return strings(vals, err)
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- if vals, err = p.client.MGet(keys...).Result(); err != nil {
- return res, err
- }
- // 转为[]string
- return strings(vals, err)
- }
- func (p *Redis) SetBit(key string, offset int64, value int) (res int64, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.SetBit(key, offset, value).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.SetBit(key, offset, value).Result()
- }
- func (p *Redis) GetBit(key string, offset int64) (res int64, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.GetBit(key, offset).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.GetBit(key, offset).Result()
- }
- func (p *Redis) SetNx(key string, value interface{}) (res bool, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.SetNX(key, value, 0).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.SetNX(key, value, 0).Result()
- }
- func (p *Redis) SetNxEx(key string, value interface{}, seconds int64) (res bool, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.SetNX(key, value, time.Duration(seconds)*time.Second).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.SetNX(key, value, time.Duration(seconds)*time.Second).Result()
- }
- func (p *Redis) Append(key, value string) (res int64, err error) {
- // 安全检查
- if p == nil {
- return res, errRedis
- }
- if p.cluster {
- // 客户端安全检查
- if p.cclient == nil {
- return res, errRedisCClient
- }
- return p.cclient.Append(key, value).Result()
- }
- // 客户端安全检查
- if p.client == nil {
- return res, errRedisClient
- }
- return p.client.Append(key, value).Result()
- }
|