> 데이터 베이스 > MySQL 튜토리얼 > windowsazure常见问题处理及技巧

windowsazure常见问题处理及技巧

WBOY
풀어 주다: 2016-06-07 15:05:16
원래의
1081명이 탐색했습니다.

欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入 「1」。 Some Tips for table service. 「1.1」 修改最大连接数,如果需要。 Config file: system.net connectionManagement add address = "*" maxconnection = "24" / /connectionManagement /s

欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入

    「1」。 Some Tips for table service.

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

    Config file:

   

   

   

   

   

    代码:

    ServicePointManager.DefaultConnectionLimit = 24;

    「1.2」 Turn off 100-continue

    Config file:

   

   

   

   

   

    代码:

    ServicePointManager.Expect100Continue = false;

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

    context.MergeOption = MergeOption.NoTracking;

    「1.4」 合理利用PartitionKey & RowKey

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

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

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

   

   

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

   

   

   

   

   

   

   

    使用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常见问题处理及技巧

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿