DataCacheOptions.shortLived constructor

DataCacheOptions.shortLived()

Creates DataCacheOptions for short-lived cache entries

Implementation

factory DataCacheOptions.shortLived() {
  return const DataCacheOptions(
    maxAge: Duration(minutes: 1),
    compress: false,
    storageType: 'memory',
  );
}