redis-rack
redis-rack copied to clipboard
Redis session store for Rack
I was developing a Rails app that switches the session store to redis and accidentally set `expire_after: nil`. I found a strange behavior with that setting and I'd like to...
`Rack::Session::Redis#generate_unique_sid` is a method that generates new unique session key that it does not conflict with an existing session key. But it seems does not work well after https://github.com/redis-store/redis-rack/pull/37 PR....
Here is how i implemented in a sinatra application: redis_options = { host: hostname, port: port, password: password, db: 1, ssl: true } use Rack::Session::Redis, redis_server: redis_options, expire_after: 86400 But...
## What did you do? Done nothing, no code or config changes done. ## What did you expect to happen? Expected to easily deploy a new image given that there...
I've implemented the redis rack with azure redis. The expectation was the session token will be invalid once the user is logout since the session is stored in the redis....
When `pool_size` or `pool_timeout` is passed as an option, `Redis::Rack::Connection` builds a `ConnectionPool`. `ConnectionPool` will execute a given block when there are not enough connections. However, since the calling store...