英文:
Redis distributed locking for radix
问题
我正在使用https://github.com/mediocregopher/radix作为我的Redis客户端。之前在使用go-redis时,我使用了redislock来进行分布式锁定。在radix中是否有类似的包可用?
英文:
I am using https://github.com/mediocregopher/radix as my redis client. Previously with go-redis I used redislock for distributed locking. Are there any such package for radix too?
答案1
得分: 1
你可以使用SETNX
来实现,实际上这就是RedisLock在底层使用的方式,你可以在这里查看如何实现:链接。希望对你有帮助。
英文:
you can doit using SETNX
actually that is the way that redislock does it underneath, you can see how do it here. I hope this works for you
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论