Hi.
I'm starting using vibe and I'm trying to set up the RedisSessionStore but I got some troubles.
First, I couldn't connect the client to a Redis server with a url. Only if server is listening on default port (6379) can be reached 'cause vibe append the port '6179' to the connection request.
Furthermore, I need some tips to set the expirationTime. When I try, I've just get the error message: Error: no property 'expirationTime' for type 'vibe.http.session.SessionStore'
.
This is how my code looks like. Regards.
settings.sessionStore = new RedisSessionStore("127.0.0.1:7000", 10);
settings.sessionStore.expirationTime = 18000;