Advertisement
Guest User

Cache Server

a guest
Sep 11th, 2012
637
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.     <configuration>
  3.         <configSections>
  4.             <section name="dataCache" type="Microsoft.ApplicationServer.Caching.DataCacheSection, Microsoft.ApplicationServer.Caching.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  5.         </configSections>
  6.         <dataCache size="Small">
  7.             <caches partitionCount="32">
  8.                 <cache consistency="StrongConsistency" name="FooBar" secondaries="1"
  9.                    minSecondaries="0">
  10.                     <policy>
  11.                         <eviction type="Lru" />
  12.                         <expiration defaultTTL="10" isExpirable="true" />
  13.                     </policy>
  14.                 </cache>
  15.                 <cache consistency="StrongConsistency" name="default" minSecondaries="0">
  16.                     <policy>
  17.                         <eviction type="Lru" />
  18.                         <expiration defaultTTL="10" isExpirable="true" />
  19.                     </policy>
  20.                 </cache>
  21.             </caches>
  22.             <hosts>
  23.                 <host replicationPort="22236" arbitrationPort="22235" clusterPort="22234"
  24.                    hostId="318367656" highWaterMark="90" lowWaterMark="80" size="12288"
  25.                    leadHost="false" account="foo\bar_iis" cacheHostName="AppFabricCachingService"
  26.                    name="foobar001" cachePort="22233" />
  27.                 <host replicationPort="22236" arbitrationPort="22235" clusterPort="22234"
  28.                    hostId="308367656" highWaterMark="90" lowWaterMark="80" size="12288"
  29.                    leadHost="false" account="foo\bar_iis" cacheHostName="AppFabricCachingService"
  30.                    name="foobar002" cachePort="22233" />
  31.                 <host replicationPort="22236" arbitrationPort="22235" clusterPort="22234"
  32.                    hostId="1773318179" highWaterMark="90" lowWaterMark="80" size="12288"
  33.                    leadHost="false" account="foo\bar_iis" cacheHostName="AppFabricCachingService"
  34.                    name="foobar003" cachePort="22233" />
  35.             </hosts>
  36.             <advancedProperties>
  37.                 <partitionStoreConnectionSettings leadHostManagement="false" />
  38.                 <securityProperties mode="None" protectionLevel="None" />
  39.                 <transportProperties maxBufferPoolSize="2147483647" maxBufferSize="2147483647"
  40.                    receiveTimeout="900000" />
  41.             </advancedProperties>
  42.             <deploymentSettings>
  43.                 <deploymentMode value="RoutingClient" />
  44.             </deploymentSettings>
  45.         </dataCache>
  46.     </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement