Redis 是一個高效能的key-value資料庫。 redis的出現,很大程度補償了memcached這類key/value儲存的不足,在部 分場合可以對關係資料庫起到很好的補充作用。它提供了Java,C/C ,C#,PHP,JavaScript,Perl,Object-C,Python,Ruby,Erlang等客戶端,使用很方便。
redis能存幾個key?
官方說單例能處理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 test
Redis can handle up to 2^32 keys, and was test#ed 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.建議手冊:Redis指令操作中文手冊
不同的資料型別儲存量會有差異:
原文位址:https://redis.io/topics/data-types
Strings類型:一個String類型的value最大可以儲存512M
Lists類型:list的元素個數最多為2^32-1個,也就是4294967295個。
Sets型別:元素個數最多為2^32-1個,也就是4294967295個。
Hashes型別:鍵值對個數最多為2^32-1個,也就是4294967295個。
Sorted sets類型:跟Sets型別相似。
相關文章推薦:###
1.redis一個實例能存多少個key
# 2.redis判斷key是否存在
相關影片推薦:
#1.燕十八redis影片教學
以上是redis能存多少個key的詳細內容。更多資訊請關注PHP中文網其他相關文章!