CacheOptions.shortLived constructor
CacheOptions.shortLived()
Creates CacheOptions for short-lived cache entries
Implementation
factory CacheOptions.shortLived() {
return const CacheOptions(
maxAgeSeconds: 60, // 1 minute
levels: [CacheLevel.memory],
compress: false,
);
}