I need to get all active session data from my Rails application. I am using Redis for session storage.
I tried REDIS.keysand then REDIS.get("SESSION_KEY"), but it looks like encrypted data .
Is there a painless solution to getting live session data in Rails?
Thanks.
source
share