4
//節點v0.5.6 //緩衝器大小
我假定可以的NodeJS分配堆的NodeJS外的最大緩衝器大小受可用的系統存儲器的數量的限制。雖然我有幾個可用內存的演出,但我似乎甚至沒有崩潰節點即使接近極限。
致命錯誤:JS分配失敗 - 進程內存不足
function bigArray(){
// each ip could be 10 digits long, therefore,
// 10 * (bcast-cur) = size of Buffer.
// does that also mean size in bytes?
var cur = 167772160;
var bcast = 184549375;
var addresses = new Buffer((bcast-cur)*10);
var offset = 0;
while (cur <= bcast){
cur += 1;
addresses.writeUInt32LE(cur,offset);
offset+=10;
}
return addresses;
};
var ba = bigArray();
它崩潰上在節點庫Buffer.js的235線在該塊:
if (this.length > Buffer.poolSize) {
// Big buffer, just alloc one.
this.parent = new SlowBuffer(this.length); //crash here
this.offset = 0;
哇。我花了整整一天的時間。那<=是從以前的重構中剩餘的。我的意思是它是一個<,只是沒有看到。啊。 –
我花了一點時間看到它。你的索引有點令人困惑。 – loganfsmyth