Package-level declarations
Types
Link copied to clipboard
class InMemoryStore(maxEntries: Int = DEFAULT_MAX_ENTRIES, ttl: Duration? = null, clock: Clock = Clock.systemUTC(), maxBytes: Long? = null, listener: CacheListener? = null) : CacheStore
Default CacheStore: entries in a map, search by scanning them.
Link copied to clipboard
data class InMemoryStoreStats(val size: Int, val evictions: Long, val expirations: Long, val bytes: Long = 0)
Point-in-time view of an InMemoryStore.