Re: sessions are not lazily created

2009-03-08 Thread Dennis
Nope, I did not enable the auth middleware. Here are my 3 middleware components: 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.locale.LocaleMiddleware', On Mar 9, 3:07 am, Alex Gaynor wrote: > Are you usin

Re: sessions are not lazily created

2009-03-08 Thread Alex Gaynor
Are you using the auth middleware? If so it will be hitting the session each query, even if your stuff doesn'tm Alex On 3/8/09, Dennis wrote: > > Memcached-backed sessions seemed to be created, even when the session > is not written to. > > This is what I'm finding when I look at my memcache a

sessions are not lazily created

2009-03-08 Thread Dennis
Memcached-backed sessions seemed to be created, even when the session is not written to. This is what I'm finding when I look at my memcache after hitting a page that does not use sessions. Thus, if an app uses sessions (but not much), memcache will fill up with empty sessions. (the same thing mi