The IDatabaseCacheAdapter contract defines a way for as key-value pairs independent of data storage.
This contract simplifies the implementation of cache adapters with CRUD-based databases, such as SQL databases and ORMs like TypeOrm and MikroOrm.
The upsert method inserts a key and if the key already exists then key will be updated with new data.value and data.expiration.
The method always returns the old cache data if it exists otherwise null will be returned.
The
IDatabaseCacheAdapter
contract defines a way for as key-value pairs independent of data storage. This contract simplifies the implementation of cache adapters with CRUD-based databases, such as SQL databases and ORMs like TypeOrm and MikroOrm.IMPORT_PATH:
"@daiso-tech/core/cache/contracts"