[ Team LiB ] Previous Section Next Section

Cache Patterns

Cache Accessor (271)

Decouples caching logic from the data model and data access details.

Demand Cache (281)

Populates a cache lazily as applications request data. A demand cache is useful for data that is read frequently but unpredictably.

Primed Cache (291)

Explicitly primes a cache with a predicted set of data. A primed cache is useful for data that is read frequently and predictably.

Cache Search Sequence (305)

Inserts shortcut entries into a cache to optimize the number of operations that future searches require.

Cache Collector (325)

Purges entries whose presence in the cache no longer provides any performance benefit.

Cache Replicator (345)

Replicates operations across multiple caches.

Cache Statistics (361)

Record and publish cache and pool statistics using a consistent structure for uniform presentation.

    [ Team LiB ] Previous Section Next Section