gpt4 book ai didi

c# - 如何使用 MemoryCache 代替 Timer 来触发方法?

转载 作者:行者123 更新时间:2023-11-30 17:40:33 25 4
gpt4 key购买 nike

以下方法通过等待已运行操作的结果来处理并发请求。

数据请求可能会同时使用相同/不同的凭据。对于每组唯一的凭据,最多可以有一个 GetCurrentInternal 调用正在进行,该调用的结果会在准备就绪时返回给所有排队的服务员。

private readonly ConcurrentDictionary<Credentials, Lazy<Data>> _dataToCredentialMap =
new ConcurrentDictionary<Credentials, Lazy<Data>>();

public virtual Data GetCurrent(Credentials credentials)
{
if (credentials == null) { return GetCurrentInternal(null); }

// It will only allow a single call to GetCurrentInternal, even if multiple threads query its Value property simultaneously.
var lazyData = new Lazy<Data>(() => GetCurrentInternal(credentials));

var data = _dataToCredentialMap.GetOrAdd(credentials, lazyData);
return data.Value;
}

并且我在构造函数的此类中添加了 timer。这是基于时间的失效策略,其中缓存条目在特定明确定义的时间段后自动失效。

_dataUpdateTimer = new Timer(UpdateData, null, TimeSpan.Zero, _dataUpdateInterval); // 1 min

更新数据的方法如下所示:

private void UpdateData(object notUsed)
{
try
{
foreach (var credential in _dataToCredentialMap.Keys)
{
var data = new Lazy<Data>(() => GetCurrent(credential));
_dataToCredentialMap.AddOrUpdate(credential, data, (k, v) => data);
}
}
catch (Exception ex)
{
_logger.WarnException(ex, "Failed to update agent metadata");
}
}

我想使用我的 ConcurrentDictionaryTimer 的 .Net MemoryCache 类来更新我的 Credential 和 Data 我认为这样会更有效率。

我知道如何使用 MemoryCache 而不是 ConcurrentDictionary,但是如何在没有 的构造函数中每分钟调用 UpdateData定时器?

你能帮我看看怎么做吗?

最佳答案

您可以在没有计时器的情况下使用 MemoryCache 来完成此操作。只需将 CacheItemPolicy 设置为 AbsoluteExpiration:

MemoryCache memCache = MemoryCache.Default;
memCache.Add(<mykey>, <myvalue>,
new CacheItemPolicy()
{
AbsoluteExpiration = DateTimeOffset.Now.Add(TimeSpan.FromMinutes(_expireminutes)),
SlidingExpiration = new TimeSpan(0, 0, 0)
}
);

关于c# - 如何使用 MemoryCache 代替 Timer 来触发方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34285365/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com