I want to sanity check my understanding of Heroku's Postgres Connection Limit.
I currently use the Postgres Standard 0 addon which has a Connection Limit of 120. I am also running a Django application in two Standard 1x dynos. Each dyno runs the application using gunicorn with two workers.
So firstly am I correct in assuming my application can handle four requests at any one time?
Second will I ever reach the Postgres Connection Limit? I assuming not as there will only ever be four connections to Postgres at any one time.