[Solved] Cache._cache.flush_all () not working, How can I clear the cache with django and memcached?

From Django documentation for cache Finally, if you want to delete all the keys in the cache, use cache.clear(). Be careful with this; clear() will remove everything from the cache, not just the keys set by your application. You can also flush content of memcached by connecting by telnet or nc and executing flush_all echo … Read more

[Solved] Strategies for large amount of db queries for single page request [closed]

There’s no real hard limit. It will all depend on a number of factors; including the profile of your db traffic, the resources available to your db, your db architecture (replicated/distributed etc), your schema, your app design, network connectivity, your user’s expectations. The best thing to do would be to have an idea of what … Read more