What does database connection limit mean?
08:01 16 Nov 2018

I'm using Django with a Postgres database from heroku. The heroku database has a

"connection limit of 20".

I don't understand what this means.

How is a connection defined? Every time a user visits my site I will get some stuff of the database. Is this already a connection because my website needs to connect to the database to get this data?

And what happens if the total number of connections is reached? Does the website still work?

django database postgresql