是否可以HttpRuntime.Cache
从另一个应用程序中检索?
我有两个应用程序,
例如 App-A、App-B
在 App-A 中,我将值插入缓存
HttpRuntime.Cache.Insert(sCacheKey, sCacheValue, Nothing, Now.AddHours(CInt(System.Configuration.ConfigurationManager.AppSettings("CacheExpirationHours"))), TimeSpan.Zero)
我无法检索 App-B 中的值
Dim strList As String
strList = HttpRuntime.Cache.Get(sCacheKey)
它只是简单地返回为空。我做错了什么?