Gets the largest items in the cache.
List<MapEntry<String, int>> get largestItems { final entries = _keySizeMap.entries.toList() ..sort((a, b) => b.value.compareTo(a.value)); return entries.take(10).toList(); }