中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決Redis和Lua使用過程中遇到的問題

發布時間:2021-07-29 09:39:43 來源:億速云 閱讀:260 作者:小新 欄目:數據庫

這篇文章主要介紹如何解決Redis和Lua使用過程中遇到的問題,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

問題

在 Redis 里執行 get 或 hget 不存在的 key 或 field 時返回值在終端顯式的是 (nil),類似于下面這樣

127.0.0.1:6379> get test_version
(nil)

如果在 Lua 腳本中判斷獲取到的值是否為空值時,就會產生比較迷惑的問題,以為判斷空值的話就用 nil 就可以了,然鵝事實卻并不是這樣的,如下所示:

127.0.0.1:6379> get test_version
(nil)
127.0.0.1:6379> EVAL "local a = redis.call('get',KEYS[1]) print(a) if a == 'nil' then return 1 else return 0 end" 1 test_version test_version
(integer) 0

我們來看下執行 Lua 腳本返回結果的數據類型是什么

127.0.0.1:6379> get test_version
(nil)
127.0.0.1:6379> EVAL "local a = redis.call('get',KEYS[1]) return type(a)" 1 test_version test_version
"boolean"

通過上面的腳本可以看到,當 Redis 返回的結果為 (nil) 時候,其真實的數據類型為 boolean,因此我們直接判斷 nil 是有問題的。

Redis 官方文檔

通過翻閱官方文檔,找到下面所示的一段話,

Redis to Lua conversion table.

  • Redis integer reply -> Lua number

  • Redis bulk reply -> Lua string

  • Redis multi bulk reply -> Lua table (may have other Redis data types nested)

  • Redis status reply -> Lua table with a single ok field containing the status

  • Redis error reply -> Lua table with a single err field containing the error

  • Redis Nil bulk reply and Nil multi bulk reply -> Lua false boolean type

Lua to Redis conversion table.

  • Lua number -> Redis integer reply (the number is converted into an integer)

  • Lua string -> Redis bulk reply

  • Lua table (array) -> Redis multi bulk reply (truncated to the first nil inside the Lua array if any)

  • Lua table with a single ok field -> Redis status reply

  • Lua table with a single err field -> Redis error reply

  • Lua boolean false -> Redis Nil bulk reply.

解決方案

通過官方文檔,我們知道判斷 Lua 腳本返回空值使用,應該直接判斷 true/false,修改判斷腳本如下所示

127.0.0.1:6379> get test_version
(nil)
127.0.0.1:6379> EVAL "local a = redis.call('get',KEYS[1]) if a == false then return 'empty' else return 'not empty' end" 1 test_version test_version
"empty"

以上是“如何解決Redis和Lua使用過程中遇到的問題”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

尼勒克县| 富锦市| 雅江县| 巫溪县| 剑川县| 新竹县| 腾冲县| 桦川县| 玛沁县| 大渡口区| 厦门市| 吐鲁番市| 婺源县| 板桥市| 呼玛县| 龙门县| 综艺| 额尔古纳市| 西乡县| 清流县| 望谟县| 阿荣旗| 安徽省| 遂平县| 西昌市| 合阳县| 岑巩县| 达日县| 忻城县| 玉溪市| 荔浦县| 四会市| 老河口市| 安仁县| 句容市| 静乐县| 丽江市| 泰顺县| 大名县| 永城市| 岚皋县|