91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Redis中慢查詢操作的示例分析

發布時間:2021-06-21 15:22:08 來源:億速云 閱讀:161 作者:小新 欄目:數據庫

這篇文章將為大家詳細講解有關Redis中慢查詢操作的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

什么是慢查詢

慢查詢的作用:通過慢查詢分析,找到有問題的命令進行優化。

mysql的慢SQL日志分析一樣,redis也有類似的功能,來幫助定位一些慢查詢操作。

Redis slowlog是Redis用來記錄查詢執行時間的日志系統。

查詢執行時間指的是不包括像客戶端響應(talking)、發送回復等IO操作,而單單是執行一個查詢命令所耗費的時間。

另外,slow log保存在內存里面,讀寫速度非常快,因此你可以放心地使用它,不必擔心因為開啟slow log而損害Redis的速度。

慢查詢日志四個屬性:

1、第一個字段是每個慢查詢唯一標識。

2、處理完命令后的時間戳

3、執行改名了所需要的時間,單位微妙

4、命令的參數列表,是個數組類型

每個慢查詢實體的ID都是唯一的,而且不會被重新設置,只會在redis重啟后才會重置它.

慢查詢參數

首先來關注下慢日志分析對應的兩個參數:

1、slowlog-log-slower-than:預設閥值,即記錄超過多少時間的記錄,默認為10000微秒,即10毫秒。

2、slowlog-max-len:記錄慢查詢的條數,默認為128條,當超過設置的條數時最早進入隊列的將被移除。線上建議增大數值,如:1000,這樣可減少隊列移除的頻率。

127.0.0.1:6379> config get slowlog-log-slower-than
1) "slowlog-log-slower-than"
2) "10000"
127.0.0.1:6379> config get slowlog-max-len
1) "slowlog-max-len"
2) "128"

可以用config set對這兩個參數進行調整,或者在配置文件中設置。

################################## SLOW LOG ###################################

# The Redis Slow Log is a system to log queries that exceeded a specified
# execution time. The execution time does not include the I/O operations
# like talking with the client, sending the reply and so forth,
# but just the time needed to actually execute the command (this is the only
# stage of command execution where the thread is blocked and can not serve
# other requests in the meantime).
#
# You can configure the slow log with two parameters: one tells Redis
# what is the execution time, in microseconds, to exceed in order for the
# command to get logged, and the other parameter is the length of the
# slow log. When a new command is logged the oldest one is removed from the
# queue of logged commands.

# The following time is expressed in microseconds, so 1000000 is equivalent
# to one second. Note that a negative number disables the slow log, while
# a value of zero forces the logging of every command.
slowlog-log-slower-than 10000

# There is no limit to this length. Just be aware that it will consume memory.
# You can reclaim memory used by the slow log with SLOWLOG RESET.
slowlog-max-len 128

慢查詢命令

語法:slowlog subcommand [argument]

如,進行查詢慢查詢、獲取慢查詢記錄的數量、重置慢查詢日志等操作:

192.168.10.38:9001> slowlog get
(empty list or set)
192.168.10.38:9001> slowlog get 10
(empty list or set)
192.168.10.38:9001> slowlog len 
(integer) 0
192.168.10.38:9001> slowlog reset
OK

關于“Redis中慢查詢操作的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

美姑县| 兰考县| 乳源| 祥云县| 察雅县| 肇源县| 仙居县| 象山县| 蒙阴县| 西乌| 当雄县| 紫金县| 新蔡县| 鄱阳县| 洪泽县| 巴林右旗| 合肥市| 通辽市| 台东市| 眉山市| 六安市| 永登县| 三原县| 荔浦县| 卢湾区| 拜泉县| 特克斯县| 五华县| 保德县| 宝应县| 怀集县| 荃湾区| 洞头县| 侯马市| 斗六市| 军事| 六盘水市| 罗平县| 兰溪市| 喀喇| 新乡县|