You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the cache full , it should evict some nodes.
From the S3-FIFO paper, when evict node from small or main queue, it should try to evict the node from the tail, like:
But here , it choose the evicted node from head, is this more reasonable ?
The text was updated successfully, but these errors were encountered:
Yes, it is only important to maintain FIFO order there. I put it in the tail and remove it from the head, because it is more familiar and intuitive for me. Also, this option is usually used more often because it has analogies from real life. For example, a queue at a store.
When the cache full , it should evict some nodes.
From the S3-FIFO paper, when evict node from
small
ormain
queue, it should try to evict the node from the tail, like:But here , it choose the evicted node from head, is this more reasonable ?
The text was updated successfully, but these errors were encountered: