DEV Community

Django caching

Tech Lite on September 03, 2019

Caching is faster when it is small amount and since caching is done in a memory like RAM in programming. But i came across this caching in file sys...
Collapse
 
stunaz profile image
stunaz

Cause you might not be able to cache in memory, or your memory capacity is limited. You could cache in file if your long-operation takes longer than just retrieving from file.

Collapse
 
thetechlite profile image
Tech Lite

hmm.....i think i got it what you mean!