used_memory_lua:Lua进程使用内存 used_memory_lua_human:以可读格式返回Lua进程使用内存 mem_fragmentation_ratio:内存碎片率,等价于(used_memory_rss /used_memory) mem_allocator:redis使用的内存分配器:在编译时指定;可以是 libc 、jemalloc或者tcmalloc,默认是jemalloc; 重点关注used_memory以及used_memory_rss和碎...
其中used_memory_human和used_memory是一样的,以G为单位显示 代码语言:javascript 复制 info memory # Memoryused_memory:8589645288used_memory_human:8.00Gused_memory_rss:9439997952used_memory_peak:9082282776used_memory_peak_human:8.46Gused_memory_lua:35840mem_fragmentation_ratio:1.10mem_allocator:jemalloc-3.6...
used_memory_peak: 内存使用的峰值。 used_memory_peak_human: 以可读的格式返回used_memory_peak。 total_system_memory: 系统可用内存总量。 total_system_memory_human: 以可读的格式返回total_system_memory。 used_memory_lua: lua引擎消耗的内存总量。 used_memory_lua_human: 以可读的格式返回used_memory_lua。
used_memory_lua_human:以可读格式返回Lua进程使用内存 mem_fragmentation_ratio:内存碎片率,等价于(used_memory_rss /used_memory) mem_allocator:redis使用的内存分配器:在编译时指定;可以是 libc 、jemalloc或者tcmalloc,默认是jemalloc; 重点关注used_memory以及used_memory_rss和碎片率mem_fragmentation_ratio 1) us...
used_memory_peak_human : 以用户可读的格式返回 Redis 的内存消耗峰值 used_memory_lua : Lua引擎所使用的内存大小(以字节为单位) mem_fragmentation_ratio : used_memory_rss 和 used_memory 之间的比率 mem_allocator : 在编译时指定的, Redis 所使用的内存分配器。可以是 libc 、 jemalloc 或者 tcmalloc 。
used_memory_lua:Lua脚本引擎所使用的内存大小。 mem_allocator:在编译时指定的Redis使用的内存分配器,可以是libc、jemalloc、tcmalloc。 因内存交换引起的性能问题 内存使用率是Redis服务最关键的一部分。如果一个Redis实例的内存使用率超过可用最大内存 (used_memory > 可用最大内存),那么操作系统开始进行内存与swap空...
【used_memory】:Redis内存占用中最主要的部分,Redis分配器分配的内存总量(单位是KB)(在编译时指定编译器,默认是jemalloc),主要包含自身内存(字典、元数据)、对象内存、缓存,lua内存。 【自身内存】:自身维护的一些数据字典及元数据,一般占用内存很低。
used_memory_dataset_perc:0.60% 整个系统内存 total_system_memory:4145299456 以更直观的格式显示整个系统内存 total_system_memory_human:3.86G Lua脚本存储占用的内存 used_memory_lua:37888 以更直观的格式显示Lua脚本存储占用的内存 used_memory_lua_human:37.00K ...
used_memory_lua:37888 // Lua 引擎所消耗的内存大小。 used_memory_lua_human:37.00K maxmemory:2147483648 // 能使用的最大内存值,字节为单位。 maxmemory_human:2.00G // 可读形式 maxmemory_policy:noeviction // 内存淘汰策略 // used_memory_rss / used_memory 的比值,代表内存碎片率 ...