WindowsAzure作為微軟基於雲計算的操作系統,更是微軟“軟件和服務”技術的名稱,在它的實際操作過程中會遭遇那些問題呢?對於那些技術上的種種難題又該如何解決呢?今天小編就請教了專業人士,並為大家總結整理了Windowsazure在實際操作過程中常見問題及那些的解決方案,對此有興趣的同學們,可以來學習下哦.
【1】.SomeTipsfortableservice.
【1.1】修改最大連接數,如果需要。
Configfile:Configfile:
<system.Net>
<connectionManagement>
<addaddress="*"maxconnection="24"/>
</connectionManagement>
</system.Net>
代碼:
ServicePointManager.DefaultConnectionLimit=24;
【1.2】Turnoff100-continue
Configfile:
<system.Net>
<settings>
<servicePointManagerexpect100Continue="false"/>
</settings>
</system.Net>
代碼:
ServicePointManager.Expect100Continue=false;
【1.3】關閉Context跟蹤,如果用不上的環境(比如都是查詢)
context.MergeOption=MergeOption.NoTracking;