提交 1d9eb47f 编写于 作者: A antirez

Document why we update peak memory in INFO.

上级 e4833ed8
......@@ -2409,9 +2409,12 @@ sds genRedisInfoString(char *section) {
char peak_hmem[64];
size_t zmalloc_used = zmalloc_used_memory();
if (zmalloc_used > server.stat_peak_memory) {
/* Peak memory is updated from time to time by serverCron() so it
* may happen that the instantaneous value is slightly bigger than
* the peak value. This may confuse users, so we update the peak
* if found smaller than the current memory usage. */
if (zmalloc_used > server.stat_peak_memory)
server.stat_peak_memory = zmalloc_used;
}
bytesToHuman(hmem,zmalloc_used);
bytesToHuman(peak_hmem,server.stat_peak_memory);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册