官方解释单例能处理key:2.5亿个,参考链接:https://redis.io/topics/faq ,以下是原话:

What is the maximum number of keys a single Redis instance can hold? and what is the max number of elements in a Hash, List, Set, Sorted Set?

Redis can handle up to 232 keys, and was tested in practice to handle at least 250 million keys per instance.

Every hash, list, set, and sorted set, can hold 232 elements.

In other words your limit is likely the available memory in your system.

相关文章:

  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
猜你喜欢
  • 2021-12-10
  • 2021-05-29
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2021-06-23
相关资源
相似解决方案