gpt4 book ai didi

c# - 如何在不知道区域的情况下通过标签从缓存中获取项目

转载 作者:太空宇宙 更新时间:2023-11-03 20:35:09 24 4
gpt4 key购买 nike

我们正在使用 MS Velocity,并很快转向 AppFabric。我们有兴趣在将来可能使用标签从缓存中检索项目。 Velocity/App Fabric API 包含一个看起来像这样的添加方法

public DataCacheItemVersion Add(string key, 
object value,
IEnumerable<DataCacheTag> tags);

但是,没有方法可以使用不需要指定区域的标签从缓存中检索对象。

问题是,如果你在没有指定区域的情况下使用 Add(),你不知道缓存管理器将对象放入哪个区域;因此在检索对象时不能指定区域。我在这里错过了一些非常简单的东西吗?

最佳答案

如果您使用的是 DataCache 类,那么有几个可用的重载,包括第一个只指定一个键的重载:

  • DataCache.Get (String) - Gets an object from the cache using the specified key.
  • DataCache.Get (String, out DataCacheItemVersion) - Gets an object from the cache using the specified key. You may also provide the version to obtain the specific version of a key, if that version is still the most current in the cache.
  • DataCache.Get (String, String) - Gets an object from the specified region by using the specified key.
  • DataCache.Get (String, out DataCacheItemVersion, String) - Gets an object from the specified region by using the specified key. You may also provide the version to obtain the specific version of a key, if that version is still the most current in the region.

来自 http://msdn.microsoft.com/en-us/library/microsoft.data.caching.datacache.get.aspx

关于c# - 如何在不知道区域的情况下通过标签从缓存中获取项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5316564/

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