Click or drag to resize

RecentDictionaryEvictionMode Enumeration

Enumeration specifying which entry to evict when calling SetAndMaintainCount(TKey, TValue). Used when constructing a RecentDictionary instance.

Namespace:  Scaleout.Collections
Assembly:  Scaleout.Collections (in Scaleout.Collections.dll) Version: 1.0.3.0 (1.0.3.0)
Syntax
C#
public enum RecentDictionaryEvictionMode
Members
  Member nameValueDescription
LRU0 Remove the least recently accessed dictionary item.
MRU1 Remove the most recently accessed dictionary item.
See Also