Cache
A caching implementation to make the system more fluid and not always rely on SQL operations.
Available:
Methods:
const data = { message: 'data' };
await this.cacheProvider.save('key:id=123', data);const data = await this.cacheProvider.recovery('key:id=123');await this.cacheProvider.invalidate('key:id=123');Last updated