1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 微軟認證考試技巧:windowsazure常見問題處理及技巧

        時間:2020-10-09 18:30:44 微軟認證 我要投稿

        微軟認證考試技巧: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常見問題處理及技巧】相關文章:

        微軟認證考試技巧12-25

        關于微軟認證考試技巧10-12

        微軟認證考試技巧:MCSA認證考試經驗12-25

        微軟認證考試做題技巧10-22

        關于微軟認證考試技巧積累10-14

        微軟認證考試技巧:MCSE考試經驗12-25

        關于微軟認證綜合輔導考試技巧10-14

        微軟認證考試技巧:數據庫12-25

        通過微軟MCSA認證技巧06-06

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>