gpt4 book ai didi

node.js - 用于 Node js 连接管理的 AWS-SDK

转载 作者:太空宇宙 更新时间:2023-11-04 02:52:57 24 4
gpt4 key购买 nike

适用于 Node js 的 aws-sdk 是否通过内部池管理其连接?

他们的文档让我相信了这一点。

httpOptions (map) — A set of options to pass to the low-level HTTP request. Currently supported options are:

proxy [String] — the URL to proxy requests through agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.

但是没有办法,至少我找不到,可以让我定义任何连接池属性。

如果我想控制使用中的并发连接,我有什么选择?

让 SDK 处理这个问题更好吗?

最佳答案

可以给http.Agent使用您想要的最大套接字的任何设置。

var AWS = require('aws-sdk');
var http = require('http');
AWS.config.update({
httpOptions: {
agent: new http.Agent(...)
}
})

关于node.js - 用于 Node js 连接管理的 AWS-SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39970302/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com