我已经部署了一个带有 Co-located 缓存的 Azure WebRole。我正在为客户端使用以下默认配置。
<dataCacheClient name="default">
<autoDiscover isEnabled="true" identifier="[name]" />
<!--<localCache isEnabled="true" sync="TimeoutBased" objectCount="100000" ttlValue="300" />-->
</dataCacheClient>
目前我每次访问缓存时都会运行以下代码
DataCacheFactory CacheFactory = new DataCacheFactory();
_Cache = CacheFactory.GetDefaultCache();
这会导致我的应用程序池经常终止。如何DataCacheFactory
在需要时重新使用它。
提前致谢