Concept Flow - Cache decorators
Method call
Check cache for key
Return cached
Return value
Response sent
When a method with a cache decorator is called, it first checks if the result is cached. If yes, it returns cached data. Otherwise, it runs the method, caches the result, then returns it.