memoryCache property

IwsCache get memoryCache

Memory cache for temporary data (fast access)

Implementation

IwsCache get memoryCache {
  _memoryCache ??= IwsMemoryCache(
    maxSize: 100,
    evictionPolicy: EvictionPolicy.lru,
    cleanupInterval: Duration(minutes: 5),
  );
  return _memoryCache!;
}