The IGroupableCache contract defines a way for storing data as key-value pairs independent of data storage.
It commes with one extra method which is useful for multitennat applications compared to ICache.
The withGroup method returns a new ICache instance that groups keys together.
Only keys in the same group will be updated, removed, or retrieved, leaving keys outside the group unaffected.
This useful for multitennat applications.
The IGroupableCache contract defines a way for storing data as key-value pairs independent of data storage. It commes with one extra method which is useful for multitennat applications compared to ICache.
IMPORT_PATH:
"@daiso-tech/core/cache/contracts"