你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

LruCache<TKey,TValue> 类

定义

使用双重链接列表和字典的简单 LRU 缓存实现。

public class LruCache<TKey,TValue> : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<TKey,TValue>>
type LruCache<'Key, 'Value> = class
    interface seq<KeyValuePair<'Key, 'Value>>
    interface IEnumerable
Public Class LruCache(Of TKey, TValue)
Implements IEnumerable(Of KeyValuePair(Of TKey, TValue))

类型参数

TKey

键的类型。

TValue

值的类型。

继承
LruCache<TKey,TValue>
实现

构造函数

LruCache<TKey,TValue>(Int32)

初始化 LruCache<TKey,TValue> 类的新实例。

属性

Count

获取包含在 LruCache<TKey,TValue> 中的键/值对的数目。

TotalLength

获取当前存储在 中的所有 LruCache<TKey,TValue>值的总长度。

方法

AddOrUpdate(TKey, TValue, Int32)

如果键尚不存在,则向 LruCache<TKey,TValue> 添加键/值对;如果键已存在,则更新 中的 LruCache<TKey,TValue> 键/值对。

GetEnumerator()

返回循环访问 LruCache<TKey,TValue> 的枚举数。

TryGet(TKey, TValue)

获取与指定键关联的值。

显式接口实现

IEnumerable.GetEnumerator()

返回循环访问集合的枚举数。

适用于