Windowsazure often problems and solutions

  

Windows Azure as Microsoft's cloud-based operating system, is Microsoft's "software and services" technology name, in the course of its actual operation will encounter those problems? How to solve the technical problems? Today, Xiaobian consulted the professionals, and summarized the common problems and solutions of windowsazure in the actual operation process. Students who are interested in this, You can learn it.

[1]. Some Tips for table service.

[1.1] Modify the maximum number of connections, if needed.

Config file:Config file:

<system.net>

<connectionManagement>

<add address = "*" Maxconnection = "24" />

</connectionManagement>

</system.net>

Code:

ServicePointManager.DefaultConnectionLimit = 24;

[1.2] Turn off 100-continue

Config file:

<system.net>

<settings>

<servicePointManager expect100Continue="false" />

</settings>

</system.net>

Code:

ServicePointManager.Expect100Continue = false;

[1.3] Turn off Context tracking, if not used (for example, both queries)

context.MergeOption = MergeOption.NoTracking; One page 12 next page total 2 pages

Copyright © Windows knowledge All Rights Reserved