如何在Node.js中增加dns分辨率的超时时间?我正在尝试解析url以查看可用的内容,但是很多请求都会超时并且可能是误报。
// checks a url string for availability and errors on 'err'
function checkAvailable( url ) {
dns.resolve4( url, function (err, addresses) {
if (err) console.log (url + " : " + err)
})
}
答案 0 :(得分:2)
Node.js DNS模块是c-ares的包装器,在选项上相当薄。如果您需要提供任何(例如超时),我建议您查看node-dns,它为DNS模块中的所有可用功能提供1:1映射,以及指定更多高级选项的其他方法(包括超时):
var dns = require('native-dns');
var question = dns.Question({
name: 'www.google.com',
type: 'A'
});
var req = dns.Request({
question: question,
server: { address: '8.8.8.8', port: 53, type: 'udp' },
timeout: 1000
});
req.on('timeout', function () {
console.log('Timeout in making request');
});
req.on('message', function (err, answer) {
answer.answer.forEach(function (a) {
console.log(a.promote().address);
});
});
req.on('end', function () {
console.log('Finished processing request');
});
req.send();