Я настроил управление сеансом с распределенным кешем 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>
Любая помощь будет оценена.