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
In find method, the code doesn't block when the ListMutex lock is already held by another thread. But this may cause the eviction violate LRU policy.
If a pair is frequently visited. But unfortunatly, each time the visiting thread could not acquire ListMutex, the pair will always stay near the tail of the LRU list and is vulnerable to be evicted - which is not expected under LRU policy.
The text was updated successfully, but these errors were encountered:
In
find
method, the code doesn't block when theListMutex
lock is already held by another thread. But this may cause the eviction violate LRU policy.If a pair is frequently visited. But unfortunatly, each time the visiting thread could not acquire
ListMutex
, the pair will always stay near the tail of the LRU list and is vulnerable to be evicted - which is not expected under LRU policy.The text was updated successfully, but these errors were encountered: