The IReadableCache contract defines a read-only interface for accessing cached key-value pairs.
It provides methods to retrieve values independent of the underlying cache storage backend (Redis, Memcached, database, etc.).
Use this contract when you need read-only access to cache data without mutation capabilities.
The
IReadableCachecontract defines a read-only interface for accessing cached key-value pairs. It provides methods to retrieve values independent of the underlying cache storage backend (Redis, Memcached, database, etc.). Use this contract when you need read-only access to cache data without mutation capabilities.IMPORT_PATH:
"@daiso-tech/core/cache/contracts"