Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在存储一个非常大的字符串列表,Redis我试图找出是否有命令(或任何其他方式)来获取该列表使用的内存。有什么建议么?
Redis
我浏览了Redis commandsby 的列表,找不到任何相关的东西。
Redis commands
目前 Redis 不提供这种类型的内省记忆能力。目前最好的选择是DUMP列表,然后RESTORE是空数据库。在恢复列表之前和之后使用目标数据库中INFO的内存部分,并从后者中减去前者以获得大小估计。
DUMP
RESTORE
INFO