I am using gin-gonic in Go and using Redis session feature provided in github.com/gin-gonic/contrib/sessions
package
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.