I'm using pyramid_redis_sessions and want to check the session's data in the session store. In Pylons I looked for the session ID in the session cookie and it was the same ID in the session store. But in Pyramid they're different, I guess because of cookie signing. So right now my request header is "Cookie: session=76602d1...=" (alphanumeric but with an "=" at the end) but the Redis key is "APPNAME:sessions:afc8499e5..." (apparently hexadecimal). So if I have several session keys in Redis, how do I tell which one corresponds to my current browser session?
-- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
