Oscar Carlsson wrote on 07/01/08 19:02:
> Heh, ops!
>
> That was a typo, but even after fixing it, nothing changed :(
> (still no change in memory usage, that is)
>
> Here is the ZeroDivisionError, btw:
> http://dpaste.com/60185/
>
> Oscar
>
The python-memcached client fails silently if it encounters an error,
e.g. can't connect to the server.
You could try changing how the client is created in
django/core/cache/backends/memcached.py
from:
self._cache = memcache.Client(server.split(';'))
to:
self._cache = memcache.Client(server.split(';'), debug=1)
And see if you get some error message in the server log.
hth
cheers
Steven
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---