以下 coed 给了我一个 EINVAL 错误和节点崩溃:
var posix = require('posix');
console.log(posix.getrlimit('nofile'));
posix.setrlimit('nofile', {soft: 10000});
ERROR:
/var/myfil/index.js:19
posix.setrlimit('nofile', {soft: 10000});
^
Error: EINVAL, Invalid argument
at Object.<anonymous> (/var/myfile/index.js:19:7)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
问题是什么?它与文档完全一样。