How to make the user sessions not expire in Redis in Spring Boot applicaion
I am new to spring-data-redis. I have integrated it with a spring-boot application. As part of this, I have added a few configs as follows: spring.session.store-type=redis spring.session.redis.namespace=tc server.servlet.session.timeout=-1 server.servlet.session.cookie.name=UISESSION server.servlet.session.cookie.http-only=true I don't want the user sessions to persist forever in…