Re: Django and memcached

2007-11-02 Thread saw2th
You probably worked this out already but the latest versions of python- memcached don't work with python2.3. I had to go back to version 1.34 before I found one that works. On 24 Sep, 14:13, Nianbig <[EMAIL PROTECTED]> wrote: > Hi > > I´m trying to get memcached up and running with Django. > I h

Django and memcached

2007-09-24 Thread Nianbig
Hi I´m trying to get memcached up and running with Django. I have added the following to my settings.py: CACHE_BACKEND = 'memcached://127.0.0.1:11211/' CACHE_MIDDLEWARE_SECONDS = 10 CACHE_MIDDLEWARE_KEY_PREFIX = 'testsite' And my middleware classes looks like this: MIDDLEWARE_CLASSES = (