-
Notifications
You must be signed in to change notification settings - Fork 37
Performance
Alex Peck edited this page Sep 11, 2022
·
6 revisions
The cache replacement policy must maximize the cache hit rate, and minimize the computational and space overhead involved in implementing the policy.
An analysis of hit rate, throughput and latency is provided comparing a reference LRU implementation that uses a global lock to the .NET MemoryCache
, ConcurrentLru
and ConcurrentLfu
.