Previous | Next --- Slide 47 of 72
Back to Lecture Thumbnails
nemo

The cache is completely full and we get a capacity miss!

ykt

We had previously loaded that element in the cache, but we lost it when we loaded the elements for the next to next set of 4 elements. A better method is to use the data already present in cache, as shown in the next slides.

manishj

This is a capacity miss. As the data that was used before got evicted from the cache because the cache became full.

sampathchanda

This would be a capacity miss, as the data previously loaded is gone now, owing to the capacity of the cache being smaller than the working set size. Here, the working set size would be 36 grid elements.