這篇文章主要為大家展示了“SpringBoot+redis如何執(zhí)行l(wèi)ua腳本”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“SpringBoot+Redis如何執(zhí)行l(wèi)ua腳本”這篇文章吧。
創(chuàng)新互聯(lián)建站服務(wù)項目包括高邑網(wǎng)站建設(shè)、高邑網(wǎng)站制作、高邑網(wǎng)頁制作以及高邑網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,高邑網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到高邑省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
1、背景
有時候,我們需要一次性操作多個 Redis 命令,但是 這樣的多個操作不具備原子性,而且 Redis 的事務(wù)也不夠強大,不支持事務(wù)的回滾,還無法實現(xiàn)命令之間的邏輯關(guān)系計算。所以,一般在開發(fā)中,我們會利用 lua 腳本來實現(xiàn) Redis 的事務(wù)。
2、lua 腳本
Redis 中使用 lua 腳本,我們需要注意的是,從 Redis 2.6.0后才支持 lua 腳本的執(zhí)行。
使用 lua 腳本的好處:
原子操作:lua腳本是作為一個整體執(zhí)行的,所以中間不會被其他命令插入。
減少網(wǎng)絡(luò)開銷:可以將多個請求通過腳本的形式一次發(fā)送,減少網(wǎng)絡(luò)時延。
復(fù)用性:lua腳本可以常駐在redis內(nèi)存中,所以在使用的時候,可以直接拿來復(fù)用,也減少了代碼量。
3、Redis 中執(zhí)行 lua 腳本
1、命令格式:
EVAL script numkeys key [key ...] arg [arg ...]
說明:
script是第一個參數(shù),為Lua 5.1腳本(字符串)。
第二個參數(shù)numkeys指定后續(xù)參數(shù)有幾個key。
key [key ...],被操作的key,可以多個,在lua腳本中通過KEYS[1], KEYS[2]獲取
arg [arg ...],參數(shù),可以多個,在lua腳本中通過ARGV[1], ARGV[2]獲取。
2、如果直接使用 redis-cli命令:
redis-cli --eval lua_file key1 key2 , arg1 arg2 arg3
說明:
eval 命令后不再是 lua 腳本的字符串形式,而是一個 lua 腳本文件。后綴為.lua
不再需要numkeys參數(shù),而是用 , 隔開多個key和多個arg
4、使用 RedisTemplate 執(zhí)行 lua 腳本
例子:刪除 Redis 分布式鎖
引入依賴:此依賴為我們整合了 Redis ,并且提供了非常好用的 RedisTemplate。
org.springframework.boot spring-boot-starter-data-redis
方式一:lua 腳本文件
1、新建 lua 腳本文件:
if redis.call("get",KEYS[1]) == ARGV[1] then return redis.call("del",KEYS[1]) else return 0 end
說明:先獲取指定key的值,然后和傳入的arg比較是否相等,相等值刪除key,否則直接返回0。
2、代碼測試:
/** * @author Howinfun * @desc lua 測試 * @date 2019/11/5 */ @RunWith(SpringJUnit4ClassRunner.class) @ActiveProfiles("test") @SpringBootTest(classes = ThirdPartyServerApplication.class) public class RedisTest { @Autowired private StringRedisTemplate redisTemplate; @Test public void contextLoads() { String lockKey = "123"; String UUID = cn.hutool.core.lang.UUID.fastUUID().toString(); boolean success = redisTemplate.opsForValue().setIfAbsent(lockKey,UUID,3, TimeUnit.MINUTES); if (!success){ System.out.println("鎖已存在"); } // 執(zhí)行 lua 腳本 DefaultRedisScriptredisScript = new DefaultRedisScript<>(); // 指定 lua 腳本 redisScript.setScriptSource(new ResourceScriptSource(new ClassPathResource("redis/DelKey.lua"))); // 指定返回類型 redisScript.setResultType(Long.class); // 參數(shù)一:redisScript,參數(shù)二:key列表,參數(shù)三:arg(可多個) Long result = redisTemplate.execute(redisScript, Collections.singletonList(lockKey),UUID); System.out.println(result); } }
方式二:直接編寫 lua 腳本(字符串)
1、代碼測試:
/** * @author Howinfun * @desc lua 腳本測試 * @date 2019/11/5 */ @RunWith(SpringJUnit4ClassRunner.class) @ActiveProfiles("test") @SpringBootTest(classes = ThirdPartyServerApplication.class) public class RedisTest { /** 釋放鎖lua腳本 */ private static final String RELEASE_LOCK_LUA_SCRIPT = "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('del', KEYS[1]) else return 0 end"; @Autowired private StringRedisTemplate redisTemplate; @Test public void contextLoads() { String lockKey = "123"; String UUID = cn.hutool.core.lang.UUID.fastUUID().toString(); boolean success = redisTemplate.opsForValue().setIfAbsent(lockKey,UUID,3, TimeUnit.MINUTES); if (!success){ System.out.println("鎖已存在"); } // 指定 lua 腳本,并且指定返回值類型 DefaultRedisScriptredisScript = new DefaultRedisScript<>(RELEASE_LOCK_LUA_SCRIPT,Long.class); // 參數(shù)一:redisScript,參數(shù)二:key列表,參數(shù)三:arg(可多個) Long result = redisTemplate.execute(redisScript, Collections.singletonList(lockKey),UUID); System.out.println(result); } }
注意:可能會有同學(xué)發(fā)現(xiàn),為什么返回值不用 Integer 接收而是用 Long。這里是因為 spring-boot-starter-data-redis 提供的返回類型里面不支持 Integer。
大家可以看看源碼:
/** * Represents a data type returned from Redis, currently used to denote the expected return type of Redis scripting * commands * * @author Jennifer Hickey * @author Christoph Strobl */ public enum ReturnType { /** * Returned as Boolean */ BOOLEAN, /** * Returned as {@link Long} */ INTEGER, /** * Returned as {@link List
所以當(dāng)我們使用 Integer 作為返回值的時候,是報以下錯誤:
org.springframework.data.redis.RedisSystemException: Redis exception; nested exception is io.lettuce.core.RedisException: java.lang.IllegalStateException
at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:74)
at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
以上是“SpringBoot+Redis如何執(zhí)行l(wèi)ua腳本”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!