Controllare la dimensione dei database in Redis
Per reperrire la dimensione de database in Redis, abbiamo a disposizione due comandi:
- DBSIZE
- INFO
Il primo restituisce il numero di chiavi nel database corrente.
Il secondo, in realtà, restituisce diverse informazioni.
Vediamo i due comandi:
$ redis-cli INFO memory
# Memory
used_memory:1062976
used_memory_human:1.01M
used_memory_rss:4186112
used_memory_rss_human:3.99M
used_memory_peak:2396440
used_memory_peak_human:2.29M
total_system_memory:16779882496
total_system_memory_human:15.63G
used_memory_lua:37888
used_memory_lua_human:37.00K
maxmemory:0
maxmemory_human:0B
maxmemory_policy:noeviction
mem_fragmentation_ratio:3.94
mem_allocator:jemalloc-3.6.0
$ redis-cli DBSIZE
(integer) 11
Enjoy!
database redis dbsize
Commentami!