只是为了好玩并尝试使用nodejs,我编写了一个非常非常简单的程序来测试Collatz猜想中的大量数字。从理论上讲,这应该很好。我遇到的问题是,这个超级简单的代码存在内存泄漏,我无法确定原因。
var step;
var numberOfSteps;
for (var i = 0; i < 100000000000000; i++) {
step = i;
numberOfSteps = 0;
while (step !== 1) {
if (step%2 === 0)
step /= 2;
else
step = 3 * step + 1;
numberOfSteps++;
}
console.log("" + i + ": " + numberOfSteps + " steps.");
}
我已经尝试了循环内外的变量。我尝试在循环结束时将它们为空。什么都不会改变内存泄漏。
最佳答案
研究一下我的核心转储:
<--- Last few GCs --->
131690 ms: Scavenge 1398.1 (1458.1) -> 1398.1 (1458.1) MB, 1.3 / 0 ms (+ 2.8 ms in 1 steps since last GC) [allocation failure] [incremental marking delaying mark-sweep].
132935 ms: Mark-sweep 1398.1 (1458.1) -> 1398.1 (1458.1) MB, 1245.0 / 0 ms (+ 3.7 ms in 2 steps since start of marking, biggest step 2.8 ms) [last resort gc].
134169 ms: Mark-sweep 1398.1 (1458.1) -> 1398.1 (1458.1) MB, 1234.5 / 0 ms [last resort gc].
<--- JS stacktrace --->
==== JS stack trace =========================================
Security context: 0x33083d8e3ac1 <JS Object>
1: /* anonymous */ [/user/projects/test.js:~1] [pc=0x557d307b271] (this=0x2a4a669d8341 <an Object with map 0xf8593408359>,exports=0x33083d804189 <undefined>,require=0x33083d804189 <undefined>,module=0x33083d804189 <undefined>,__filename=0x33083d804189 <undefined>,__dirname=0x33083d804189 <undefined>)
3: _compile [module.js:413] [pc=0x557d304d03c] (this=0x2a4a669d8431...
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory
Aborted (core dumped)
根据github https://github.com/nodejs/node/issues/3171上的此问题,似乎这是一个关于console.log的已知问题。
这是一个已知的“问题”,因为在以下情况下写入标准输出
tty /控制台是异步的。因此,非常快速地记录大量数据可以
如果tty / console导致大量写操作被缓冲在内存中
无法跟上。
关于javascript - 简单的Node.js应用程序中的内存泄漏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39853272/