perf(policy): avoid per-sample heap allocations in eviction sampling#490
Open
nishantmehta wants to merge 1 commit into
Open
perf(policy): avoid per-sample heap allocations in eviction sampling#490nishantmehta wants to merge 1 commit into
nishantmehta wants to merge 1 commit into
Conversation
fillSample built the eviction candidate pool as []*policyPair, allocating a new policyPair on the heap for every sampled key. This runs on the eviction path (every Set once the cache is full), so a write-heavy workload pays lfuSample (5) small allocations per eviction round. policyPair is a 16-byte value type (two integers) and the sample is only read (to find the minimum-hit victim) and swap-removed, never retained or mutated through the pointer. Storing the pairs by value in a caller-sized slice keeps the single backing-array allocation while removing all the per-element ones. BenchmarkSampledLFUFillSample: 80 B/op -> 0 B/op, 5 allocs/op -> 0 allocs/op, ~50% faster (79ns -> 39ns). Signed-off-by: Nishant Mehta <nishantmehta.n@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
sampledLFU.fillSamplebuilds the eviction candidate pool as[]*policyPair, allocating a freshpolicyPairon the heap for every sampled key. This runs on the eviction path — everySetonce the cache is full — so a write-heavy workload payslfuSample(5) small allocations per eviction round.policyPairis a 16-byte pure value type (two integers), and the sample is only read (to find the minimum-hit victim) and swap-removed — it is never retained or mutated through the pointer. Storing the pairs by value in the caller-sized slice keeps the single backing-array allocation while removing all the per-element ones.Benchmark
(
benchstat, n=10, p=0.000.)Testing
Full test suite passes, including
-race. No API or behavioral change.