I'm testing out using memcached to cache django views. How can I tell if memcached is actually caching anything from the Linux command line?
|
feedback
|
|
You could use telnet and the stats command e.g.:
| |||
|
feedback
|
|
Start memcache not as a daemon but normal, so just run 'memcached -vv' for very verbose. You will see when get's and sets come in to the memcache server. | |||
|
feedback
|
|
Simple way to test for memcache working was to sneak in a commented out timestamp on every page served up. If the timestamp stayed the same on multiple requests to a page, then the page was being cached by memcache. In Django settings, I also setup the cache mechanism to use a file cache on the filesystem (really slow), but after hitting up the pages I could see that there were actual cache files being placed in the file path so I could confirm caching was active in Django. I used both these steps to work out my caching problem. I actually did not have caching turned on correctly in Django. The newer method to activate caching is using the 'django.middleware.cache.CacheMiddleware' middleware (not the middleware with two middleware pieces that have to be the first/last middleware settings.) | |||
|
feedback
|
|
I know this question is old, but here is another useful approach for testing memcached with django: As @Jacob mentioned, you can start memcached in very verbose mode (not as a daemon):
To test your django cache config, you can use the low-level cache api.
If your cache configuration is correct, you should see output in memcache similar to this:
| |||
|
feedback
|
|
Can you use curl to fetch a page a few hundred times and time the results? You could also look at running a process on the server that simulates heavy CPU/disk load while doing this. | |||
|
feedback
|