projects
/
redis.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b93fdb7
)
peak fragmentation ratio removed as it is a confusing field for users and trivial...
author
antirez
<antirez@gmail.com>
Thu, 21 Apr 2011 14:56:31 +0000
(16:56 +0200)
committer
antirez
<antirez@gmail.com>
Thu, 21 Apr 2011 14:56:31 +0000
(16:56 +0200)
src/redis.c
patch
|
blob
|
blame
|
history
diff --git
a/src/redis.c
b/src/redis.c
index b164fdd1030d9f1267dc237b54749f753a88d2ee..96786df95667b1d40a5083158ccd6a03dfd18cb9 100644
(file)
--- a/
src/redis.c
+++ b/
src/redis.c
@@
-1317,7
+1317,6
@@
sds genRedisInfoString(char *section) {
"used_memory_peak:%zu\r\n"
"used_memory_peak_human:%s\r\n"
"mem_fragmentation_ratio:%.2f\r\n"
- "peak_mem_fragmentation_ratio:%.2f\r\n"
"use_tcmalloc:%d\r\n",
zmalloc_used_memory(),
hmem,
@@
-1325,7
+1324,6
@@
sds genRedisInfoString(char *section) {
server.stat_peak_memory,
peak_hmem,
zmalloc_get_fragmentation_ratio(),
- (float)zmalloc_get_rss()/server.stat_peak_memory,
#ifdef USE_TCMALLOC
1
#else