What LOCATION should I point Memcached to after deployment?
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
} }
I need to change 'LOCATION' to replace localhost. Any guidance?