我查看了以下链接http://msdn.microsoft.com/en-us/library/windowsazure/gg185668.aspx和http://msdn.microsoft.com/en-us/library/windowsazure/gg185682.aspx
I want to configure Windows Azure Cache (In role Caching). i found that there
are two options Co-located Topology and Dedicated Topology.But i m using co-located i
had configured web.config has shown in link but i couldn't able to do that plz see below
web.config i had configured but i m getting error
我从过去 2 天开始尝试,但我可以得到任何解决方案。谢谢你
web.config 文件
<configSections>
<section name="dataCacheClients"
type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core"
allowLocation="true" allowDefinition="Everywhere" />
<section name="cacheDiagnostics"
type="Microsoft.ApplicationServer.Caching.AzureCommon.DiagnosticsConfigurationSection, Microsoft.ApplicationServer.Caching.AzureCommon"
allowLocation="true" allowDefinition="Everywhere" />
<system.web>
<sessionState mode="Custom" customProvider="AFCacheSessionStateProvider">
<providers>
<add name="AFCacheSessionStateProvider"
type="Microsoft.Web.DistributedCache.DistributedCacheSessionStateStoreProvider, Microsoft.Web.DistributedCache"
cacheName="default" dataCacheClientName="default" applicationName="AFCacheSessionState"/>
</providers>
</sessionState>
</system.web>
<dataCacheClients>
<dataCacheClient name="default">
<autoDiscover isEnabled="true" identifier="WebRole1" />
</dataCacheClient>
</dataCacheClients>
<cacheDiagnostics>
<crashDump dumpLevel="Off" dumpStorageQuotaInMB="100" /></cacheDiagnostics>
</configuration>
错误.png