You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
когда съедает всю память процесс умирает. тест делал на виртуальной машине с 1гб памятью.
eats all memory when the process dies. test done on a virtual machine with 1GB of memory.
latest (0.7.0-pre) node
node --expose-gc
var zlib = require('zlib');
var buffer = new Buffer('eJzT0yMAAGTvBe8=', 'base64');
function nullfun(){};
function test() {
console.log(process.memoryUsage());
for (var i = 0; i < 100; i++) {
zlib.unzip(buffer, nullfun);
};
process.nextTick(test);
};
process.nextTick(test);
когда съедает всю память процесс умирает. тест делал на виртуальной машине с 1гб памятью.
eats all memory when the process dies. test done on a virtual machine with 1GB of memory.
latest (0.7.0-pre) node
node --expose-gc