Re: Django Caching and Browser Caching

2018-04-08 Thread yingi keme
Thanks Jason Yingi Kem > On 8 Apr 2018, at 4:19 PM, Jason wrote: > > Browsers cache images, js and css, but not the actual data that's rendered. > In addition, browser caching only works for repeat visitors to your site. > Using server side caching complements

Re: Django Caching and Browser Caching

2018-04-08 Thread Jason
Browsers cache images, js and css, but not the actual data that's rendered. In addition, browser caching only works for repeat visitors to your site. Using server side caching complements browser side caching but also works for first time visitors. On Sunday, April 8, 2018 at 10:49:07 AM

Django Caching and Browser Caching

2018-04-08 Thread yingi keme
I Have set up cache in my File System and I have used the following code to cache my view from django.views.decorators.cache import cache_page @cache_page(60 * 15) def myView(request): #some code What i want to know is that, How is this caching mechanism different from the automatic