Reputation: 1633
I'm using Heroku to deploy my RubyOnRail app, and use Spree CMS Like in pic, I got very high Memory Usage, but very low requests/min. Dont know what happen here. Someone can give me a suggest please ?
Upvotes: 0
Views: 318
Reputation: 106782
From the docs:
We have found that the 1X and 2X dynos do not perform at a production-ready efficiency for a Spree store. Although some stores will work fine on the 2X dynos, if you’re having speed problems we recommend running on the PX (“performance”) dynos only.
That said: A Heroku Hobby dyno has only 512MB what is below the hardware requirements of this application. They recommend running PX dynos that have at least 2.5GB RAM.
Upvotes: 2