2👍
✅
Django does not cache the loading of templates by default. Because they are not cached, they get loaded from disk every time they are rendered and that is why you’ll see template changes without reloading the application.
If you’re interested in caching the template loading process to improve performance (it will help a lot if you are rendering a number of different templates per request), take a look at this post.
Source:stackexchange.com