Why does this exist?
Esqlate Cache is a really basic in-memory cache which has a few interesting properties:
- You initialize the cache with the function to retrieve the value from the original source, enabling you to write
cache(params)
everywhere, whether the item is cached or not. The reason for …