Redis/redis

[Redis] redis 란?

오늘도개발 2024. 5. 7. 13:41

 

* 참고 사이트 : https://redis.io/docs/latest/develop/data-types/

 

Understand Redis data types

Overview of data types supported by Redis

redis.io

 

1. Redis 란?

 

 - 인메모리 데이터 저장소로서 주로 캐싱, 세션 관리, 메시징 등 다양한 용도로 사용되는 오픈 소스 데이터베이스

 

 - 다양한 데이터 구조 지원

 

 - 영속성 사용 가능

 

 - 높은 가용성 및 확장성

 

 - Pub/Sub 메커니즘 지원

 

 

2. Redis 데이터 타입

 

 -  Strings

 

 -  Lists

 

 -  Sets

 

 -  Hashes

 

 -  Sorted sets

 

 -  Streams

 

 -  Geospatial indexes

 

 -  Bitmaps

 

 -  Bitfields

 

 -  HyperLogLog

'Redis > redis' 카테고리의 다른 글

[Redis] sorted sets  (0) 2024.05.09
[Redis] hashes  (0) 2024.05.09
[Redis] sets  (0) 2024.05.09
[Redis] lists  (0) 2024.05.07
[Redis] String  (0) 2024.05.07