InterviewSolution
Saved Bookmarks
| 1. |
Explain the caching strategies in the Django? |
||||||||||
|
Answer» Caching refers to the technique of storing the output results when they are processed initially so that next time when the same results are fetched again, instead of processing again those already stored results can be USED, which leads to faster accessing as well us LESS resource utilization. DJANGO provides us with a robust cache system that is able to STORE dynamic web pages so that these pages don’t need to be evaluated again for each request.
|
|||||||||||