- Usage:
-
MEMORY STATS
- Complexity:
- O(1)
- Since:
- 4.0.0
peak.allocated: Peak memory consumed by Valkey in bytes (seeINFO'sused_memory_peak)total.allocated: Total number of bytes allocated by Valkey using its allocator (seeINFO'sused_memory)startup.allocated: Initial amount of memory consumed by Valkey at startup in bytes (seeINFO'sused_memory_startup)replication.backlog: Size in bytes of the replication backlog (seeINFO'srepl_backlog_active)clients.slaves: The total size in bytes of all replicas overheads (output and query buffers, connection contexts)clients.normal: The total size in bytes of all clients overheads (output and query buffers, connection contexts)cluster.links: Memory usage by cluster links (seeINFO'smem_cluster_links).aof.buffer: The summed size in bytes of AOF related buffers.lua.caches: the summed size in bytes of the overheads of the Lua scripts' cachesfunctions.caches: the summed size in bytes of the overheads of the Function scripts' cachesdbXXX: For each of the server's databases, the overheads of the main and expiry dictionaries (overhead.hashtable.mainandoverhead.hashtable.expires, respectively) are reported in bytesoverhead.db.hashtable.lut: Total overhead of dictionary buckets in databases (Added in Valkey 8.0)overhead.db.hashtable.rehashing: Temporary memory overhead of database dictionaries currently being rehashed (Added in Valkey 8.0)overhead.total: The sum of all overheads, i.e.startup.allocated,replication.backlog,clients.slaves,clients.normal,aof.bufferand those of the internal data structures that are used in managing the Valkey keyspace (seeINFO'sused_memory_overhead)db.dict.rehashing.count: Number of DB dictionaries currently being rehashed (Added in Valkey 8.0)keys.count: The total number of keys stored across all databases in the serverkeys.bytes-per-key: The ratio betweendataset.bytesandkeys.countdataset.bytes: The size in bytes of the dataset, i.e.overhead.totalsubtracted fromtotal.allocated(seeINFO'sused_memory_dataset)dataset.percentage: The percentage ofdataset.bytesout of the total memory usagepeak.percentage: The percentage oftotal.allocatedout ofpeak.allocatedallocator.allocated: SeeINFO'sallocator_allocatedallocator.active: SeeINFO'sallocator_activeallocator.resident: SeeINFO'sallocator_residentallocator.muzzy: SeeINFO'sallocator_muzzyallocator-fragmentation.ratio: SeeINFO'sallocator_frag_ratioallocator-fragmentation.bytes: SeeINFO'sallocator_frag_bytesallocator-rss.ratio: SeeINFO'sallocator_rss_ratioallocator-rss.bytes: SeeINFO'sallocator_rss_bytesrss-overhead.ratio: SeeINFO'srss_overhead_ratiorss-overhead.bytes: SeeINFO'srss_overhead_bytesfragmentation: SeeINFO'smem_fragmentation_ratiofragmentation.bytes: SeeINFO'smem_fragmentation_bytes
The MEMORY STATS command returns an @array-reply about the memory usage of the
server.
The information about memory usage is provided as metrics and their respective values. The following metrics are reported:
A note about the word slave used in this man page: If not for backward compatibility, the Valkey project no longer uses the words "master" and "slave". Unfortunately in the given commands these words are part of the protocol, so we'll be able to remove such occurrences only when this API will be naturally deprecated.
RESP2 Reply
Array reply: a nested list of memory usage metrics and their values.
RESP3 Reply
Map reply: memory usage metrics and their values.