Aerospike NodeJS 客户端 - "minConnsPerNode" 选项
Aerospike NodeJS Client - "minConnsPerNode" Option
我正在尝试使用 minConnsPerNode 设置,但它似乎不起作用。
我已经在存储库中打开了一个问题,但一个月后我仍然没有得到答复。 (Issue)
const Aerospike = require('aerospike')
const config = {
hosts: '127.0.0.1:3000',
minConnsPerNode: 1, // works if minConnsPerNode is removed
}
const run = async () => {
Aerospike.setDefaultLogging({ level: Aerospike.log.DEBUG, file: process.stderr.fd })
const client = await Aerospike.connect(config);
const puts = Array.from({ length: 5 }, (_, i) => client.put(new Aerospike.Key('ssd-store', 'test', i), { i }))
await Promise.all(puts)
client.close()
}
run()
更多细节可以在问题中找到
这已在 aerospike@3.16.6 中修复。
可以在 issue
中找到更多详细信息
我正在尝试使用 minConnsPerNode 设置,但它似乎不起作用。
我已经在存储库中打开了一个问题,但一个月后我仍然没有得到答复。 (Issue)
const Aerospike = require('aerospike')
const config = {
hosts: '127.0.0.1:3000',
minConnsPerNode: 1, // works if minConnsPerNode is removed
}
const run = async () => {
Aerospike.setDefaultLogging({ level: Aerospike.log.DEBUG, file: process.stderr.fd })
const client = await Aerospike.connect(config);
const puts = Array.from({ length: 5 }, (_, i) => client.put(new Aerospike.Key('ssd-store', 'test', i), { i }))
await Promise.all(puts)
client.close()
}
run()
更多细节可以在问题中找到
这已在 aerospike@3.16.6 中修复。 可以在 issue
中找到更多详细信息