Memcached – not able to use cache in django python
i want to cache in django so I am using low level API caching but even after adding it shows none >>> from django.core.cache import cache >>> cache.set('my_key', 'hello, world!') >>> cache.get('my_key') >>> print(cache.get('my_key')) None >>> in my settings.py CACHES…