使用VS2012我添加了来自WebRole属性缓存选项卡缓存功能。 其中,它产生的web.config中的以下XML:
<dataCacheClients>
<tracing sinkType="DiagnosticSink" traceLevel="Error" />
<dataCacheClient name="default">
<autoDiscover isEnabled="true" identifier="[cluster role name]"/>
<!-- <localCache isEnabled="true" sync="TimeoutBased" objectCount="100000" ttlValue="300" /> -->
</dataCacheClient>
</dataCacheClients>
好,太棒了。 我取代了[集群角色名]以webrole的名字,说:“helloworld.web。” 现在,当我创建DataCacheFactory或数据高速缓存的对象:
_dataCacheFactory = new DataCacheFactory();
_defaultCache = _dataCacheFactory.GetDefaultCache();
//Or, just this line
_defaultCache = new DataCache(@"default");
我得到以下错误:
Microsoft.ApplicationServer.Caching.DataCacheException was unhandled
HelpLink=http://go.microsoft.com/fwlink/?LinkId=164049
HResult=-2146233088
Message=ErrorCode<ERRCA0021>:SubStatus<ES0001>:Server collection cannot be empty.
Source=Microsoft.ApplicationServer.Caching.Client
ErrorCode=21
SubStatus=-1
Some notes:
IDE: VS2012,
Framework: 4.0
AzureSDK: June2012
Local dev machine
我在想什么?
编辑
我得到它的工作!
我创建的WebRole OnStart方法的DataCacheFactory,我把它交给的Application_Start在Global.asax中,它似乎是工作。
Sandrino解释了为什么是这样的话: https://stackoverflow.com/a/11886136/1374935