Re: Session variables without a database

2007-11-07 Thread [EMAIL PROTECTED]
Thanks... On Nov 7, 8:15 pm, "@@" <[EMAIL PROTECTED]> wrote: > Configuring the session engine > > *New in development version*. > > By default, Django stores sessions in your database (using the model > django.contrib.sessions.models.Session). Though this is convenient, in some > setups it's fast

Re: Session variables without a database

2007-11-07 Thread @@
Configuring the session engine *New in development version*. By default, Django stores sessions in your database (using the model django.contrib.sessions.models.Session). Though this is convenient, in some setups it's faster to store session data elsewhere, so Django can be configured to store se

Session variables without a database

2007-11-07 Thread [EMAIL PROTECTED]
I need to put together a small site for some demos...I don't need a database as I'm getting my data via some API calls, but wanted to use Django templates. I had wanted to store this data in a session variable ( the API calls can take a while)... I thought I remembered reading somewhere it wasn