Skip to content

Commit

Permalink
hash zipmap max entries and entry size information removed from INFO …
Browse files Browse the repository at this point in the history
…command since we have this info and the equivalent info for sets, hashes, zset accessible via the CONFIG GET command.
  • Loading branch information
antirez committed Sep 20, 2011
1 parent 57f611d commit b0fcf23
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/redis.c
Expand Up @@ -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"
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit b0fcf23

Please sign in to comment.