Hey guys,
Iโm currently setting up my dapp with mongo db and I see that the free tier has a max connections limit of 500 connections. I understand that this means that only 500 connections can access the database concurrently.
However, Iโm not entirely sure what a connection is defined as. In my case, the client only queries from the mongodb server, and is not directly connected to it in any way. All queries to MongoDB server happen through parse server. Does this mean that only 500 people can visit my dapp concurrently, or will an unlimited number of people be able to visit since they wonโt be working with the database directly?
Thanks!