1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
This commit is contained in:
2022-11-18 16:56:12 +08:00
parent b76be4ce6b
commit bd85140a78
3 changed files with 245 additions and 0 deletions

105
redis/redis.go Normal file
View File

@ -0,0 +1,105 @@
package redis
import (
"context"
"time"
"github.com/go-redis/redis/v8"
)
const (
defaultSeparator = ":"
blockingQueryTimeout = 5 * time.Second
readWriteTimeout = 2 * time.Second
defaultSlowThreshold = time.Millisecond * 100 // 慢查询
)
type Option func(r *Redis)
type Redis struct {
addr string // 服务器地址
prefix string // 键值前缀
separator string // 分隔符
}
func New(addr string, opts ...Option) *Redis {
r := &Redis{
addr: addr,
}
return r
}
func (s *Redis) Set(ctx context.Context, key, value string) error {
conn, err := s.getRedis()
if err != nil {
return err
}
return conn.Set(ctx, s.formatKey(key), value, 0).Err()
}
func (s *Redis) Get(ctx context.Context, key string) (string, error) {
conn, err := s.getRedis()
if err != nil {
return "", err
}
return conn.Get(ctx, s.formatKey(key)).Result()
}
func (s *Redis) GetSet(ctx context.Context, key, value string) (string, error) {
conn, err := s.getRedis()
if err != nil {
return "", err
}
val, err := conn.GetSet(ctx, s.formatKey(key), value).Result()
return val, err
}
func (s *Redis) Del(ctx context.Context, key ...string) (int, error) {
conn, err := s.getRedis()
if err != nil {
return 0, err
}
keys := s.formatKeys(key...)
v, err := conn.Del(ctx, keys...).Result()
if err != nil {
return 0, err
}
return int(v), err
}
func (s *Redis) getRedis() (redis.UniversalClient, error) {
client := redis.NewUniversalClient(&redis.UniversalOptions{
Addrs: []string{s.addr},
})
return client, nil
}
func (s *Redis) formatKeys(keys ...string) []string {
// If no prefix is configured, this parameter is returned
if s.prefix == "" {
return keys
}
ret := make([]string, 0, len(keys))
for _, k := range keys {
ret = append(ret, s.formatKey(k))
}
return ret
}
func (s *Redis) formatKey(key string) string {
if s.prefix == "" {
return key
}
return s.prefix + s.separator + key
}