1 Star 0 Fork 0

marcello/go-common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mutex.go 827 Bytes
一键复制 编辑 原始数据 按行查看 历史
marcello 提交于 2021-05-16 20:33 . -
package redis
import (
"context"
"fmt"
"time"
v8 "github.com/go-redis/redis/v8"
)
type Mutex struct {
key string
client *v8.Client
Timeout time.Duration
}
// NewMutex 新建
func NewMutex(client *v8.Client) *Mutex {
return &Mutex{client: client, Timeout: time.Second * 3}
}
// Lock 上锁
func (m *Mutex) Lock(key string, expires time.Duration) error {
ctx, cancel := context.WithTimeout(context.Background(), m.Timeout)
defer cancel()
m.key = key
cmd := m.client.SetNX(ctx, key, "1", expires)
if cmd.Err() == v8.Nil {
return nil
} else if cmd.Err() != nil {
return cmd.Err()
}
return fmt.Errorf("key %s exists", key)
}
// Unlock 释放
func (m *Mutex) Unlock() error {
ctx, cancel := context.WithTimeout(context.Background(), m.Timeout)
defer cancel()
return m.client.Del(ctx, m.key).Err()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/marcellos/go-common.git
git@gitee.com:marcellos/go-common.git
marcellos
go-common
go-common
e809a504da49

搜索帮助

0d507c66 1850385 C8b1a773 1850385