Re: [pylons-discuss] Re: Connection issue with redis_session

2015-05-22 Thread Jonathan Vanasco
What I'd imagine happening is this: 1. You're connecting on http, not https so... 2. The key isn't in the session, which will (correctly) raise an issue. If you're doing https, I think you need to put Pyramid behind something (i'm not sure if pserve can handle https or not). I run nginx on my ma

Re: [pylons-discuss] Re: Connection issue with redis_session

2015-05-22 Thread Brian Looker
Thank you very much for the help. I've fleshed out the program a bit more, running a localhost on my machine, and setting the secure flag to True is raising a couple of issues. First, I run into a KeyError while pulling data from the session, which does not happen while secure is set to false. A

[pylons-discuss] Re: replacing memcached with redis in beaker

2015-05-22 Thread Jonathan Vanasco
just circling back; it was a drop-in fix. the only weird thing is that keys are saved in this format: beaker:{session_id}:session i would have expected beaker:session:{session_id} so to make things more standard, I just saved into it's own database id. -- You received this message be