How can i integrate redis with spring boot?
After add the below dependecy, what would be the code structure for simply saving user details list where user name is the key and User object is the value in redis server. Then fetch a user details with a given user name?
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
<version>1.2.7.RELEASE</version>
</dependency>