My goal is to run 2 workers and 1 web under 14 USD.
or Can I run multiple processes under same dyno and is it a good production practice(n.b: I have a high traffic site)?. (this seems like only way to keep it under 14 USD)
I have a Procfile defined like below:
web: gunicorn -b 0.0.0.0:5004 server:engine --preload --log-file=- --log-level DEBUG -w 4
worker: python3 -u _worker.py
This is running on a Heroku hobby server($7) and for two processes, two dynos it cost me 7+7 = 14 USD.

Now if you look at the Professional(Standard 1x) Pricing it just cost me 25 USD for each dyno here.

But clearly, in the Heroku pricing section, it is written that Unlimited background workers from Standard1x. Check the last Point of Standard Dyno Pricing What does this even mean? Does it just mean I can scale but I gotta pay for each one or Is it like I can start multiple workers in a single Dyno to keep it 25 USD?.
