-
Redis - value 사이즈 최대값database 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/
반응형'database' 카테고리의 다른 글
RDB에서 foreign key를 사용해야될까? (0) 2023.09.22 SQL - COUNT() 함수 사용법 (0) 2023.09.22 DB - 데이터 삭제 (0) 2022.09.06 MySQL - timestamp 컬럼 시간 0으로 업데이트 (datetime to date) (0) 2022.08.11 DB - 샤딩(Sharding)과 파티셔닝(Partitioning) (0) 2022.06.16