I need to implement some caching mechanism in my Python/Django project. Currently our live site is in Heroku cloud.
Which is the best caching mechanism to use i.e ‘Local-memory caching’ ,’Filesystem caching’ or ‘Database caching’? I need to easily implement this in our live heroku cloud environment. One of my friend suggested to use ‘python Memcached’. But its really difficult to set up. My time is minimal.
Can anyone advise me on this, please?
Thanks in advance…
Django has a inbuild Memcache Support which you can use https://docs.djangoproject.com/en/1.4/topics/cache/
You will get more info Here