1. 程式人生 > >heap out of memory nodejs 記憶體溢位的解決方法

heap out of memory nodejs 記憶體溢位的解決方法

今天在nodejs請求sql資料庫後,想將資料儲存到excle裡,測試時候資料量少,很完美的將資料導了出來,但當資料量太大時,資料匯出後達到200多M, 報錯:heap out of memory

解決方式其實也很簡單:
只需加上一句話就好:
例如以前的node a.js變成 node --max_old_space_size=8000 a.js