Ibm mobilefirst worklight适配器中maxConcurrentConnectionsPerNode的值应该是多少

Ibm mobilefirst worklight适配器中maxConcurrentConnectionsPerNode的值应该是多少,ibm-mobilefirst,worklight-adapters,worklight-server,Ibm Mobilefirst,Worklight Adapters,Worklight Server,我正在开发IBM Worklight应用程序。在生产上,该应用程序有大约1-2千个用户。“maxConcurrentConnectionsPerNode”的值应该是多少 在适配器中,maxConcurrentConnectionsPerNode的值为2(默认值)。 当用户数量较少时,应用程序响应良好,但在高负载(数千用户)下,用户面临与服务器连接的问题 此外,后端数据库有点慢 <wl:adapter name="Authentication" xmlns:xsi="http://w

我正在开发IBM Worklight应用程序。在生产上,该应用程序有大约1-2千个用户。“maxConcurrentConnectionsPerNode”的值应该是多少

在适配器中,maxConcurrentConnectionsPerNode的值为2(默认值)。 当用户数量较少时,应用程序响应良好,但在高负载(数千用户)下,用户面临与服务器连接的问题

此外,后端数据库有点慢

<wl:adapter name="Authentication"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:wl="http://www.worklight.com/integration"
    xmlns:http="http://www.worklight.com/integration/http">

    <displayName>Authentication</displayName>
    <description>Authentication</description>
    <connectivity>
        <connectionPolicy xsi:type="http:HTTPConnectionPolicyType">
            <protocol>http</protocol>
            <domain>blank</domain>
            <port>80</port>         
        </connectionPolicy>
        <loadConstraints maxConcurrentConnectionsPerNode="2" />
    </connectivity>

    <procedure name="pro1"></procedure>
    <procedure name="pro2"></procedure>
    <procedure name="pro3" securityTest="appSecurityTest"></procedure>

</wl:adapter>

认证
认证
http
空白的
80

如果您要征求性能建议,那么这里不适合,完全取决于您的特定机器及其设置

我建议您阅读以下材料,并在此基础上进行有针对性的更改:

  • 在线搜索更多

感谢您的建议。实际上,虽然许多用户同时使用该应用程序,但他们的一些请求甚至无法到达服务器(从日志中找到)。“maxConcurrentConnectionsPerNode”是否有任何连接限制?