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