↧
Answer by orokusaki for What are best practices for caching for a "Home Feed"...
For maximum performance, you can implement something akin to Russian Doll Caching, the summary of which is something like: Cache objects, cache lists of those objects, cache generated pages that...
View ArticleWhat are best practices for caching for a "Home Feed" or a "News Feed" in Django
I use Django as an API for my mobile front end. I just send JSON back and forth. I've created an endpoint for a home feed. Each user has a unique home feed depending on the people that they follow....
View Article