Jonathan Vanasco
Jonathan Vanasco
stubbing the ticket, I can handle this. If redis is configured to act as an LRU cache with server-side expire policies, there is no need to set the EXPIRE/SETEX or...
`setex` does both [http://redis.io/commands/SETEX] in a single call. The performane difference in python is non-existent, but it's much better for the server. It requires Redis 2.0 -- which was released...
The TTL is set on every attribute access. The session is serialized on every attribute write. This should only happen once per request. Addressed in https://github.com/ericrasmussen/pyramid_redis_sessions/pull/63
Removed the initial call to EXISTS. Instead, the package will attempt to create a session in a `try` block. If it passes, great. If it fails, the process is repeated...
The key is checked with EXISTS, and if it passes GET is used to retrieve it. This should be refactored to just make a single call to GET. The redis...
I'm looking at ditching Beaker, and wanted to make a suggestion/request. (i'd be wiling to code this too). I would like the request property to be configurable, and to be...
This is a regression introduced by this ticket: https://github.com/tylerpearson/lazyYT/issues/12 I haven't been able to find any current YouTube docs, but "common knowledge" (as noted in this stack overflow post http://stackoverflow.com/a/20542029/442650)...
Here is an initial idea to start addressing #856 Various functions accept a parameter with a name like "token", but the parameter might either be a String or a Dict...
I've run into some issues adding typing to a project that uses oauthlib. The first issue is regarding `oauthlib.common.Request`. The package is managing many object attributes through a dict, which...
Certbot's Installer works great with "vanilla" Apache, but is often incompatible with many of the "mod_" plugins for at least the two following reasons: 1- Some mods extend the Apache...