summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-09-20 11:08:08 +0200
committerantirez <antirez@gmail.com>2011-09-20 11:08:08 +0200
commitb0fcf23304e5ccc82ed81107aa39b80f6173fb53 (patch)
treee37d48c0b67010d4ff1e5c4a8afe9481570287e4
parent57f611d9534f01874a83b8e8b0efa69971b88c14 (diff)
downloadredis-b0fcf23304e5ccc82ed81107aa39b80f6173fb53.tar.gz
hash zipmap max entries and entry size information removed from INFO command since we have this info and the equivalent info for sets, hashes, zset accessible via the CONFIG GET command.
-rw-r--r--src/redis.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/redis.c b/src/redis.c
index e3f9bae5e..78e082b76 100644
--- a/src/redis.c
+++ b/src/redis.c
@@ -1271,8 +1271,6 @@ sds genRedisInfoString(void) {
"evicted_keys:%lld\r\n"
"keyspace_hits:%lld\r\n"
"keyspace_misses:%lld\r\n"
- "hash_max_zipmap_entries:%zu\r\n"
- "hash_max_zipmap_value:%zu\r\n"
"pubsub_channels:%ld\r\n"
"pubsub_patterns:%u\r\n"
"latest_fork_usec:%lld\r\n"
@@ -1314,8 +1312,6 @@ sds genRedisInfoString(void) {
server.stat_evictedkeys,
server.stat_keyspace_hits,
server.stat_keyspace_misses,
- server.hash_max_zipmap_entries,
- server.hash_max_zipmap_value,
dictSize(server.pubsub_channels),
listLength(server.pubsub_patterns),
server.stat_fork_time,