Why didn't I discover this earlier!!! Thank you so much for the great material!!!
@1오징오5 жыл бұрын
In modern in-memory database, we don't need to consider 'Buffer pools'. right?
@izharkhankhattak3 жыл бұрын
*_Nice lecture_*
@DenisG6316 жыл бұрын
Great lecture! One question though. With 32 hits in the Postgres example. Does this mean, that no prefetching has been done? With the prefetching, I would assume that it aggressively drops the already read pages (since they are safe to drop) and replace them with the new prefetched pages. 32/44k ratio sounds really bad
@MrEternalFool6 жыл бұрын
32 is 32 pages which is 32 * 4k = 128k which is the size of the buffer pool. I think this means no pre-fetching was done. I don't know why.