카테고리 없음

Redis 기본 문법

당근개발자 2022. 4. 2. 20:04

Redis란

- Remote Dictionary Server의 약자로, 캐시 서버로 많이 사용되고 있다.

- key / value 기반의 in memory 데이터 저장소 이다. no sql의 일종이다.

- db로도 캐시로도 사용이 가능하다.

- key / value 기반으로 쿼리를 사용할 필요가 없다.

- 메모리에서 데이터를 처리하기 때문에 속도는 매우 빠르다.

 

https://www.tutorialspoint.com/redis/

 

Redis Tutorial

Redis Tutorial Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server, since the keys can contain strings, hashes, lists, sets and sorted sets. Redis is written in C. This tutorial provides good

www.tutorialspoint.com

해당 사이트에서, 레디스의 기본 문법과 예시가 있다. 활용하면 좋아보인다.