I've set up sesion management with Velocity distributed cache. I have 3 servers hosting the cache and created the named cache with
new-cache Sessions -Secondaries 1 TTL 1440
and the following is in my web.config file
<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>
Any help would be appreciated.