Our current cache overflow algorithm removes entries in the lookaside table whenever a page is read into cache. That work slows down reads, and we have the lookaside sweep code that removes entries in the background as well.
We should stop removing them inline with reads. We need to change inserts as well, to behave correctly if there is an existing key. This could also play into future work to avoid re-writing lookaside table entries.