我们正在使用 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
我是一名优秀的程序员,十分优秀!