Add
dataCacheClient settings in config section of your configuration file
<section name="dataCacheClient"
type="Microsoft.ApplicationServer.Caching.DataCacheClientSection,
Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0,
Culture=neutral,
PublicKeyToken=31bf3856ad364e35"
allowLocation="true"
allowDefinition="Everywhere"/>
Now
outside the config section define the dataCacheClient setting
<dataCacheClient>
<!--
(optional) specify local cache -->
<localCache
isEnabled="false"
sync="TimeoutBased"
objectCount="100000"
ttlValue="300" />
<!--
cache host(s) losthost for local cache or mention the name of cacheHost -->
<hosts>
<host
name="localhost"
cachePort="22233" />
</hosts>
<!--
Security is disabled, otherwise Grant-CacheAllowedClientAccount cmdlet must be
used to authorize appPool Identity or You can disabled the security using
Set-CacheClusterSecurity cmdlet set all none. But you need to take down the
CacheCluster and change and restart again-->
<securityProperties mode="None" protectionLevel="None" />
</dataCacheClient>