Redis란 무엇인가?
Redis 레디스는 사용되는 인메모리 데이타 구조 스토어이다. 캐시, 메시지 브로커, 스트리밍 엔진, 데이터베이스로 사용된다. strings, hashs, lists, sets, sorted sets with range queries appending to string, incrementing the value in hash pushing en element to a list, computing set intersection getting the member with higher ranking in a sorted set. 인메모리 데이터셋 일시적으로 데이터셋을 덤핑하든 디스크에 저장하는 방식, 커맨드를 디스크 기반 로그에 추가하여 영속성을 제공한다. 인메모리 캐시, 네트워크, 기능을 위해 영속성을 제거..
2023. 8. 24.