When a user requests the same page, with the same data...I'd like Django to return a 304, so that the browser doesn't have to load the page all over again.
I'm new to this. How can this be done?
Thanks.
|
When a user requests the same page, with the same data...I'd like Django to return a 304, so that the browser doesn't have to load the page all over again. I'm new to this. How can this be done? Thanks.
| |||
|
feedback
|
|
There's extensive description in Django documentation: Conditional view processing Following tools are particularly useful:
| ||||
|
feedback
|
|
You could look into Django's caching system, or if you can easily check if the user is requesting the same data, you can return a | |||||||
feedback
|