[Answered ]-Implementing memcached: native django's modules or on (front server, reverse proxy) nginx

2👍

There may be an advantage to going the nginx route… but I’m not seeing it.

The advantages to using Django’s module:

  1. You can set data to cache, such as expensive queries and API call results, rather than be locked into caching the whole view.

  2. It’s easy, and then you can get back to making your application cool.

Leave a comment