getStats abstract method

Future<Iterable<CacheStat?>> getStats(
  1. String name,
  2. Iterable<String> keys
)

Returns a Iterable over all the non nullable CacheStore CacheStats keys requested of a named cache. It provides a optimized retrieval strategy that avoids reading the CacheEntry implementation into memory

  • name: The cache name
  • keys: The list of keys

Implementation

Future<Iterable<CacheStat?>> getStats(String name, Iterable<String> keys);