3 Star 4 Fork 1

kelvins-io/common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
redis_lock.go 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
cristiane 提交于 2020-08-01 11:47 . 初始v1
package lock
import (
"fmt"
"time"
"github.com/gomodule/redigo/redis"
)
type redisLock struct {
redisPool *redis.Pool
key string
randVal string
}
func NewRedisLock(redis *redis.Pool, redisKey string) (*redisLock, error) {
if redis == nil {
return nil, fmt.Errorf("redis不能为nil")
}
if redisKey == "" {
return nil, fmt.Errorf("redisKey不能为空")
}
return &redisLock{
redisPool: redis,
key: redisKey,
randVal: string(time.Now().UnixNano()),
}, nil
}
func (r *redisLock) Set(expireSecond int32) (bool, error) {
if expireSecond <= 0 {
return false, fmt.Errorf("expireSecond 参数必须大于0")
}
conn := r.redisPool.Get()
defer conn.Close()
reply, err := conn.Do("SET", r.key, r.randVal, "NX", "PX", expireSecond*1000)
if err != nil {
return false, err
}
if reply == nil {
return false, nil
}
return true, nil
}
func (r *redisLock) Release() error {
conn := r.redisPool.Get()
defer conn.Close()
luaScript := `
if redis.call("get", KEYS[1]) == ARGV[1] then
return redis.call("del", KEYS[1])
else
return 0
end;
`
script := redis.NewScript(1, luaScript)
_, err := script.Do(conn, r.key, r.randVal)
return err
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/kelvins-io/common.git
git@gitee.com:kelvins-io/common.git
kelvins-io
common
common
v1.1.4

搜索帮助