memcached listeing on UDP with Django
Question : I am not able to get memcached listening on UDP , to work ( get set delete ) with Django. I have the memcached listening only on UDP 11211 , as I have mentioned in the previous question . What I have tried so far: 1.Setting CACHES to use python-memcached Python binding. get and set didn't work with simple settings i.e. 'LOCATION': '127.0.0.1:11211' , so tried specifying udp explicitly (using this mention as the rationale): CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': 'udp:127.0.0.1:11211', 'TIMEOUT': None, } } gave: ValueError