Did you forget to provide one using @id?
when you use Redis as a Jpa Repository, You should import org.springframework.data.annotation.Id not javax.persistence.Id. 1234567891011import org.springframework.data.annotation.Idimport org.springfr
when you use Redis as a Jpa Repository, You should import org.springframework.data.annotation.Id not javax.persistence.Id. 1234567891011import org.springframework.data.annotation.Idimport org.springfr
스프링 부트 프로젝트 생성 후 아래 의존성 추가. 1234<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependency>
캐쉬의 구조 2가지 형태 Look aside Cache메인은 DB이고 DB에서 캐쉬로 데이터를 가져와서 저장. 캐쉬에 데이터가 있으면 캐쉬 데이터를 사용하여 성능을 개선하고 없으면 디비에서 가져와서 다시 캐쉬에 저장.일반적인 구조 Write back캐쉬에 데이터를 특정기간 동안 먼저 저장하고 캐쉬에 있는 데이터들을 디비에 저장.휘발할 수 있는 가능성 있
adding dependency 1234<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId></dependency> Installing