时间:2021-07-01 10:21:17 帮助过:58人阅读
redis可以存储多少数据?
没有这个指标。不是记录数的问题,而是实际容量。所以在配置时可以:
设置redis.conf中的maxmemory选项,该选项是告诉Redis当使用了多少物理内存后就开始拒绝后续的写入请求,该参数能很好的保护好你的Redis不会因为使用了过多的物理内存而导致swap,最终严重影响性能甚至崩溃。
官方说单例能处理key:2.5亿个,参考链接:https://redis.io/topics/faq,以下是原话:
What is the maximum number of keys a single Redis instance can hold? and what the max number of elements in a Hash, List, Set, Sorted Set?
Redis can handle up to 2^32 keys, and was tested in practice to handle at least 250 million keys per instance.
Every hash, list, set, and sorted set, can hold 2^32 elements.
In other words your limit is likely the available memory in your system.
一个key或是value大小最大是512M
以上就是redis可以存储多少数据的详细内容,更多请关注Gxl网其它相关文章!