For a new Flutter project, I want to use Supabase as the backend. Unfortunately, two questions have arisen. I'm using the SDK provided by Supabase for Flutter.
Now, when I execute an insert, select, update, or delete command, I assume that a connection pooler is used for the short time the query is processed in the database. Is this correct?
During authentication, is the pooler only used for a short time, even if the frontend constantly checks with a stream whether the user is logged in or not?
What is the direct connection needed for?
Thanks,
That would mean that only 200 (free plan) API queries can be made at the same time. Depending on server performance, this could be more, of course.