Hacker News new | ask | show | jobs
by rvba 483 days ago
Why is that a random read? Also is it truely random, or from seed? But if prng then they could cache right?
1 comments

Random is prng. They still cannot cache though because they do many reading "passes" through the same data.

If build a cache that gets hits on the first pass, then it won't work for the second and later passes.