database
Redis - value 사이즈 최대값
codeManager
2022. 7. 5. 18:36
반응형
Strings
A String value can be at max 512 Megabytes in length.
Lists
The max length of a list is 2^32 - 1 elements (4294967295, more than 4 billion of elements per list).
Sets
The max number of members in a set is 2^32 - 1 (4294967295, more than 4 billion of members per set).
Hashes
Every hash can store up to 2^32 - 1 field-value pairs (more than 4 billion).
https://redis.io/docs/manual/data-types/
Redis data types
Overview of the many data types supported by Redis
redis.io
반응형