redis监控会不会统计lua里面执行的命令次数

问题:redis lua里面执行的命令会不会计算到监控的qps中

假设:

lua 脚本中对数据库操作了1w次。

执行一次lua 脚本, 虽然内部对数据库操作了1w次, 但是从redis 监控上看只是执行了一次lua脚本, lua内部对数据库的1w次不会记录到监控。

如果通过monitor观看可以看到 。

bash 复制代码
1736927858.030705 [0 xxxx:53788] "EVAL" "for i = 1, 10000 do\n    redis.call('SET', KEYS[1], ARGV[1])\nend" "1" "mykey1" "myvalue"
1736927858.030777 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030782 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030785 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030787 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030789 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030794 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030796 [0 lua] "SET" "mykey1" "myvalue"
1736927858.030799 [0 lua] "SET" "mykey1" "myvalue"
。。。。。。。。。。。
相关推荐
Kagol13 小时前
macOS 和 Windows 操作系统下如何安装和启动 MySQL / Redis 数据库
redis·后端·mysql
hzulwy14 小时前
Redis常用的数据结构及其使用场景
数据库·redis
ashane131415 小时前
Redis 哨兵集群(Sentinel)与 Cluster 集群对比
redis
Y第五个季节16 小时前
Redis - HyperLogLog
数据库·redis·缓存
Justice link17 小时前
企业级NoSql数据库Redis集群
数据库·redis·缓存
monstercl20 小时前
Lua中基础函数使用详解
lua·脚本语言
爱的叹息20 小时前
Spring Boot 集成Redis 的Lua脚本详解
spring boot·redis·lua
morris1311 天前
【redis】redis实现分布式锁
数据库·redis·缓存·分布式锁
爱的叹息1 天前
spring boot集成reids的 RedisTemplate 序列化器详细对比(官方及非官方)
redis
weitinting1 天前
Ali linux 通过yum安装redis
linux·redis