Package-level declarations

Types

Link copied to clipboard
interface Cache<K, V>

Interface for cache implementations.

Link copied to clipboard
class NoOpCache<K, V> : Cache<K, V>

A no-op cache that doesn't store anything. Useful for disabling caching when needed.

Link copied to clipboard
class SimpleCache<K, V> : Cache<K, V>

Optimized cache implementation for read-heavy workloads.