Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connection pooling #14

Open
tferracina opened this issue Oct 4, 2024 · 0 comments
Open

Connection pooling #14

tferracina opened this issue Oct 4, 2024 · 0 comments
Labels
future Feature that will be required after more progress is made

Comments

@tferracina
Copy link
Collaborator

tferracina commented Oct 4, 2024

Implement connection pooling to improve performance, and have better resource management and scalability.

ONLY IMPORTANT IF SCALING TO MULTIPLE CONCURRENT USERS

Pool is created with minimum number of connections. A maximum can also be specified as needed.

Essentially a way to reuse database connections, so as to not open and close database connection for each request.

  • Eliminates the overhead of establishing a new connection for each request
  • Reduces latency in request processing
  • Limits the number of connections to the database
  • Prevents database overload
  • Manages connection resources effectively
@tferracina tferracina added the future Feature that will be required after more progress is made label Oct 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
future Feature that will be required after more progress is made
Projects
None yet
Development

No branches or pull requests

1 participant