On 10/14/15 8:57 PM, Tiger Nassau wrote:
maybe we will just use beaker with our bottle framework - thought it was
duplicative to have redis since we have postgres and lookup speed should
be trivial since session only has a couple of small fields like account
id and role
The problem with sessio
maybe we will just use beaker with our bottle framework - thought it was
duplicative to have redis since we have postgres and lookup speed should beĀ
trivial since session only has a couple of small fields like account id and role
Sent from Type Mail
On Oct 14, 2015, 12:16, at 12:16, Jonathan
On Oct 7, 2015, at 11:58 AM, john.tiger wrote:
> has anyone used postgres jsonb for holding session ? Since server side
> session is really just a piece of data, why bother with special "session"
> plugins and just use postgres to hold the data and retrieve it with psycopg2
> ? Maybe use som
On 10/07/2015 10:53 AM, Bill Moran wrote:
On Wed, 7 Oct 2015 09:58:04 -0600
"john.tiger" wrote:
has anyone used postgres jsonb for holding session ? Since server side
session is really just a piece of data, why bother with special
"session" plugins and just use postgres to hold the data and r
On 10/07/2015 08:58 AM, john.tiger wrote:
has anyone used postgres jsonb for holding session ? Since server side
session is really just a piece of data, why bother with special
"session" plugins and just use postgres to hold the data and retrieve it
with psycopg2 ?
That is how Django does it.
On Wed, 7 Oct 2015 09:58:04 -0600
"john.tiger" wrote:
> has anyone used postgres jsonb for holding session ? Since server side
> session is really just a piece of data, why bother with special
> "session" plugins and just use postgres to hold the data and retrieve it
> with psycopg2 ? Maybe
has anyone used postgres jsonb for holding session ? Since server side
session is really just a piece of data, why bother with special
"session" plugins and just use postgres to hold the data and retrieve it
with psycopg2 ? Maybe use some trigger if session changes?We are
using python Bot