ConcurrentLRUCache<'K, 'V> Type
Least Recently Used Cache supporting concurrency. The capacity decides how many entries to store.
Constructors
Constructor | Description |
Full Usage:
ConcurrentLRUCache(capacity)
Parameters:
int
Returns: ConcurrentLRUCache<'K, 'V>
|
|
Instance members
Instance member | Description |
Full Usage:
this.Clear
|
|
Full Usage:
this.Count
Returns: int
|
|
Full Usage:
this.GetOrAdd
Parameters:
'K
op : ICacheableOperation<'a, 'V>
arg : 'a
Returns: 'V
|
|