Tagged Questions
3
votes
3answers
180 views
Slow Memcached: Average 10ms memcached `get`
We're using Newrelic to measure our Python/Django application performance. Newrelic is reporting that across our system "Memcached" is taking an average of 12ms to respond to commands.
Drilling down ...
0
votes
1answer
426 views
When set SESSION_ENGINE to memcached, Django website halts
I have set up memcached in Django using Pylibmc binding:
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
'LOCATION': ['10.241.1.1:11211',
...
0
votes
1answer
409 views
Why doesn't memcache work?
from django.core.cache import cache
def testcache():
cache.set('test','I am putting this message in',3333)
print cache.get('test')
It just prints "None"
This is in "ps aux":
...
-1
votes
1answer
179 views
Memcache and Python
I installed Memcache doing this:
gunzip memcached-1.2.1.tar.gz
tar -xvf memcached-1.2.1.tar
cd memcached-1.2.1
./configure
make
make install
Now, what exactly is the next step? (for Python)
I know ...