레디스(Redis) 레디스는 Key-Value 기반인 인메모리 데이터 저장소로서 주로 캐쉬 솔루션으로 쓰이고 있는 오픈 프로젝트 입니다. 레디스를 이용하게 되면 JVM위에서 동작하지 않고 어떤 데이터를 캐싱할 수 있다. 따라서 GC대상이 되지 않고 그로 인한 오버헤드가 줄어드는 장점이 있다. Redis는 기본적으로 스프링부트에 6379 포트로 설정되어 있다. 스프링부트와 레디스(Redis) 연동 의존성 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-data-redis 레디스 도커 실행 d..