github.com/gin-gonic/contrib/sessions
store, _ := sessions.NewRedisStore(10, "tcp", "localhost:6379", "", []byte("secret"))
router.Use(sessions.Sessions("workino_session", store))
How do I control how long these Sessions are stored in Redis?
Thank you.