微软认证

微软认证考试技巧:windowsazure常见问题处理及技巧

时间:2024-09-12 15:26:51 微软认证 我要投稿
  • 相关推荐

微软认证考试技巧:windowsazure常见问题处理及技巧

  「1」。 Some Tips for table service.

微软认证考试技巧:windowsazure常见问题处理及技巧

  「1.1」 修改最大连接数,如果需要。

  Config file:

   <system.net>
 
    <connectionManagement>
 
    <add address = "*" maxconnection = "24" />
 
    </connectionManagement>
 
    </system.net>

  代码:

  ServicePointManager.DefaultConnectionLimit = 24;

  「1.2」 Turn off 100-continue

  Config file:

    <system.net>
 
    <settings>
 
    <servicePointManager expect100Continue="false" />
 
    </settings>
 
    </system.net>

  代码:

  ServicePointManager.Expect100Continue = false;

  「1.3」 关闭Context跟踪,如果用不上的环境(比如都是查询)

  context.MergeOption = MergeOption.NoTracking;

  「1.4」 合理利用PartitionKey & RowKey

  具体参见: More about “PartitionKey”&"RowKey“ in windows azure table storage

  <2> using customer httphandler in windows azure webrole, 在webrole中使用自定义HttpHandler.

  由于部署以后的webrole实际运行在IIS7上面,如果您配置的是:
  <system.web>
  <httpHandlers>

  将会报错,正确的配置是在节点中。

  <3> 使用role配置文件里的storage连接信息创建client account时,使用以下代码:

  CloudStorageAccount account = CloudStorageAccount.FromConfigurationSetting("DataConnectionString");

  出现以下错误:

  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();

  }

  }

  };

  });

【微软认证考试技巧:windowsazure常见问题处理及技巧】相关文章:

微软认证技巧:如何成为一名MCT08-02

微软认证考试等级09-20

微软MOS认证考试简介06-27

sun认证java关于字符串处理技巧08-26

精选微软Word实用技巧10-28

2016年微软认证Win7系统库功能小技巧08-23

微软认证考试试题及答案「经典版」08-24

微软office365认证考试大纲07-20

2017年微软office认证考试大纲07-09

新浪微博认证技巧07-16