This article describes a few sample use cases: Actions Caching Is Now Available
A simple example would be caching tokens for an external API:
- Without caching, you would have to request a new token during every signup.
- With caching, you only have to request a new token when one isn’t already stored in the cache.
Does that make sense?