[Django]-Django using memcached cache backend — am I doing it right?

4👍

Django does not manage start itself memcached or other services, you have to run memcached yourself.

I always try to connect to memcached myself to see if it’s up and running (and accepting connections as well) using:

telnet 127.0.0.1 11211

Leave a comment