Desinerd : Dipankar's Blog

Multiple views using bottle.py

Published: in Personal, , , , , , , , , , by . Leave a Comment on Multiple views using bottle.py.

I have been using the micro-framework called bottle.py, and starting to write fairly complicated applications on top of it. So I have been able to put together a relatively clean structure based that serves my maintainability issues This setup uses redis, memcached, and mako as the templating language. Lets assume the application name is project. […]

Django : using a seperate memcached cloud for sessions

Published: in Technical, , , , , , , by . 2 Comments on Django : using a seperate memcached cloud for sessions.

When you are using a platform like django you realise how slow sessions can get when you are using the database as a backend. The problem of using a memory cache like memcached is the fact that when you restart the server to refresh the cache or remove stale objects, the problem is that you […]