SA
메인 내용으로 이동

Cache Evictions

Eviction happens when the cache is complete, and we need to store a new block from memory.

Implementations

  • FIFO: First-in, First-out (oldest block replaced)
  • LRU: Least Recently Used (usually best, hard to implement)
  • Random: Performs pretty well