윈도우 환경에서 redis 설치하기

 

레디스(Redis)는 고성능 키-값 형식의 저장소로 문자열, 리스트, 해시, 셋, 형식의 데이터를 지원하는 BSD 라이선스 기반의 오픈 소스 NoSQL이다. 

 

단순한 데이터를 빠르게 처리하는데 적합한 데이터 저장소이다. 데이터를 램에 저장하고 디스크에 변경사항을 기록하는 구조로 되어 있다. 메모리를 사용하여 저장 공간에 제약사항이 있지만 빠르게 데이터를 조작할 수 있다. 

 

Windows에 Redis 설치하는 방법

 

Reis는 공식적으로 Windows를 지원하지 않는다. 다행이도 Mircrosft Open Tech 그룹에서 64비트 기반으로 포팅하여 제공하고 있다. 

 

 GitHub 저장소 

 

microsoftarchive/redis

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes - microsoftarchive/redis

github.com

윈도우용 레디스 설치 파일 다운로드는 아래 링크를 참조하면 된다. 

https://github.com/microsoftarchive/redis/releases

 

Releases · microsoftarchive/redis

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes - microsoftarchive/redis

github.com

msi 설치파일을 이용하여 설치하면 별도의 환경 설정없이 간편하게 레디스를 사용할 수 있다. 윈도우 서비스 등록도 자동으로 등록된다.