- 相關(guān)推薦
微軟認(rèn)證考試技巧:windowsazure常見(jiàn)問(wèn)題處理及技巧
「1」。 Some Tips for table service.
「1.1」 修改最大連接數(shù),如果需要。
Config file:
代碼:
ServicePointManager.DefaultConnectionLimit = 24;
「1.2」 Turn off 100-continue
Config file:
代碼:
ServicePointManager.Expect100Continue = false;
「1.3」 關(guān)閉Context跟蹤,如果用不上的環(huán)境(比如都是查詢)
context.MergeOption = MergeOption.NoTracking;
「1.4」 合理利用PartitionKey & RowKey
具體參見(jiàn): More about “PartitionKey”&"RowKey“ in windows azure table storage
<2> using customer httphandler in windows azure webrole, 在webrole中使用自定義HttpHandler.
由于部署以后的webrole實(shí)際運(yùn)行在IIS7上面,如果您配置的是:
<system.web>
<httpHandlers>
將會(huì)報(bào)錯(cuò),正確的配置是在
<3> 使用role配置文件里的storage連接信息創(chuàng)建client account時(shí),使用以下代碼:
CloudStorageAccount account = CloudStorageAccount.FromConfigurationSetting("DataConnectionString");
出現(xiàn)以下錯(cuò)誤:
Exception: SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used.
解決方案:
在 public override bool OnStart()中加入以下代碼:
CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
{
configSetter(RoleEnvironment.GetConfigurationSettingValue(configName));
RoleEnvironment.Changed += (anotherSender, arg) =>
{
if (arg.Changes.OfType
。Any((change) => (change.ConfigurationSettingName == configName)))
{
if (!configSetter(RoleEnvironment.GetConfigurationSettingValue(configName)))
{
RoleEnvironment.RequestRecycle();
}
}
};
});
【微軟認(rèn)證考試技巧:windowsazure常見(jiàn)問(wèn)題處理及技巧】相關(guān)文章:
微軟認(rèn)證考試技巧10-22
微軟認(rèn)證考試技巧:MCSA認(rèn)證考試經(jīng)驗(yàn)06-17
微軟認(rèn)證考試做題技巧06-30
微軟認(rèn)證考試技巧:MCSE考試經(jīng)驗(yàn)08-08
微軟認(rèn)證考試技巧:數(shù)據(jù)庫(kù)06-07
微軟認(rèn)證考試技巧:MCSE自適應(yīng)考試09-06