我已经使用 Velocity 分布式缓存设置了会话管理。我有 3 台服务器托管缓存并创建了命名缓存
new-cache Sessions -Secondaries 1 TTL 1440
以下在我的 web.config 文件中
<section name="dataCacheClient"
type="Microsoft.Data.Caching.DataCacheClientSection,
 cacheBaseLibrary"
allowLocation="true"
allowDefinition="Everywhere"/>
<sessionState mode="Custom" customProvider="Velocity" >
<providers>
<add
name="Velocity"
type="Microsoft.Data.Caching.DataCacheSessionStoreProvider"
cacheName="Sessions"/>
</providers>
</sessionState>
任何帮助,将不胜感激。