nodejs 内存溢出 :Last few GCs 问题

技术分享 2024-01-11 11:14:59

方法一:

# windows
set NODE_OPTIONS=--max_old_space_size=4096
# mac/linux
export NODE_OPTIONS=--max_old_space_size=4096

方法二:

在运行命令中增加 --max_old_space_size=4096


4096为允许使用4G内存

----

代码层面:

①关闭 sourcemap

node --expose-gc // --expose-gc 表示允许手动执行垃圾回收机制

咨询小瓶科技
咨询我们
顶部