evictExpired static method
Implementation
static Future<void> evictExpired() async {
for (final _BucketIndex index in _indexes.values) {
for (final UStorageEntry entry in index.entries.values.where((UStorageEntry e) => e.isExpired).toList()) {
await remove(entry.key, bucket: index.bucket);
}
}
}