Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 heroku 上部署了一个应用程序。有时后台进程会引发以下错误:“任务因错误而失败:无法在 5.0 秒内获得连接。最大池大小当前为 1;请考虑增加池大小或超时。”
我怎样才能增加pool size或timeout?不幸的是,我在 Mongoid 文档和资源中找不到任何有用的东西。
pool size
timeout
您可以在以下位置指定池大小mongoid.yml:
mongoid.yml
production: pool_size: 5
详情在这里。