First time here? Check out the FAQ!
2

How do I check if memcache is working?
 

I recently set up memcache. How do I check that it is working correctly?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Joseph's avatar
353
Joseph
asked 12 years ago

Comments

see more comments

1 Answer

2

Log in to django's shell:

python manage.py shell

and type:

from django.core.cache import cache
cache.set('somekey', 'someval')
cache.get('somekey')

You should get back 'someval' when the cache works. You can confirm that with the dummy cache backend the cache.get('somekey') will return None, but with some real backend you'll get the stored value.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 12 years ago
link

Comments

see more comments