月光代碼園

記錄、分享、交流

导航

2020年4月26日 #

Redis学习笔记#10 lua脚本,整合springboot调用

摘要: lua代码:-- checkandset.lua local current = redis.call('GET', KEYS[1]) if current == ARGV[1] then redis.call('SET', KEYS[1], ARGV[2]) return true end ret 阅读全文

posted @ 2020-04-26 13:17 bangdikka 阅读(309) 评论(0) 推荐(0) 编辑