logoalt Hacker News

deeguyesterday at 3:48 PM1 replyview on HN

This might be useful in a case where a small lookup or similar is often pushed out from cache such that lookups are usually cold. Yet lookup data might by small enough to not cause issue with cache pollution, increased bandwidth or memory consumption.


Replies

foltikyesterday at 6:03 PM

In this case it’s better to asynchronously bring the data into the cache, which you can do with a prefetch shortly before the read.

show 1 reply