Re: Using Memcached on Heroku

2011-11-20 Thread Jayson Reis
Hi, just FYI I started a pure python memcached module with SASL auth, so it can be used in Heroku. https://github.com/jaysonsantos/python-binary-memcached Any help will be appreciated. Thank you Jayson Reis On Nov 18, 6:11 pm, Jayson Reis wrote: > For me worked with a snippet i've added in settin

Re: Using Memcached on Heroku

2011-11-18 Thread Jayson Reis
For me worked with a snippet i've added in settings. if os.environ.get('MEMCACHE_SERVERS'): CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache', 'LOCATION': '{host}:11211'.format( host=os.environ.get('MEMCACHE_S

Using Memcached on Heroku

2011-11-16 Thread GuyBowden
Hi, I have a django app running on Heroku - I've just added memcached to the app and have got a server location plus username and password for the memcached server. How do I put the username / password into the cache settings in my settings.py file? I can only see the ability to put IP and Port i