Heroku:为node.js设置环境变量WEB_MEMORY

时间:2015-03-04 14:14:15

标签: node.js heroku

我可以在这里阅读:https://devcenter.heroku.com/articles/node-concurrency#tuning-the-concurrency-level用于内存管理

  

Heroku buildpack通过两个提供合理的默认值   环境变量:WEB_MEMORY和WEB_CONCURRENCY。这两个   可以被覆盖

但他们没有说如何覆盖它们。我试过了

process.env['WEB_MEMORY'] = 1024;

在我的app.js文件中,但当我推送到Heroku时,我仍然得到

512 MB limit per process (WEB_MEMORY)

如何覆盖此WEB_MEMORY变量?

1 个答案:

答案 0 :(得分:2)

heroku config:set WEB_MEMORY=unicorns --app YOUR_APP_NAME

请参阅:https://devcenter.heroku.com/articles/config-vars