标签: node.js
在服务器启动时(使用命令supervisor ./bin/www)我将mongodb中的大量数据导出到redis并收到错误:
supervisor ./bin/www
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory
但是,如果我使用node --max-old-space-size=4076 ./bin/www启动命令,它可以正常工作。
node --max-old-space-size=4076 ./bin/www
如何配置supervisor以使用4GB内存启动节点?
supervisor