Demystifying Connection Pools: A Deep Dive
Open Source For You|August 2023
By understanding the inner workings of connection pooling and building your own pools, you will be able to build more reliable and high-performing applications, especially at scale. This first part of a two-part series demystifies the magic of connection pooling.
Pratik Shivaraikar
Demystifying Connection Pools: A Deep Dive

If you’re a software engineer, you’ve likely encountered the need to manage database connections efficiently. That’s where connection pooling comes in! Connection pools are a critical aspect of software engineering. They allow applications to efficiently manage connections to a database or any other system. If your application requires constant access to a system, establishing a new connection to the system for every request can quickly become resource-intensive, causing the application to slow down or even crash. This is where connection pools come in.

As engineers, we often don’t spend a lot of time thinking about connections. A single connection is typically inexpensive. However, as things scale up, the costs of creating and maintaining these connections increase accordingly. This is why I believe understanding the world of connection pooling is important. It will enable us to build more performant and reliable applications, especially at scale.

Typical connections

Before jumping to connection pooling, let us understand how an application typically connects to a system to perform any operation:

1. The application attempts to open a connection.

2. A network socket is opened to connect the application to the system.

3. Authentication is performed. 

4. The operation is performed.

5. The connection is closed. 

6. The socket is closed.

This story is from the August 2023 edition of Open Source For You.

Start your 7-day Magzter GOLD free trial to access thousands of curated premium stories, and 9,000+ magazines and newspapers.

This story is from the August 2023 edition of Open Source For You.

Start your 7-day Magzter GOLD free trial to access thousands of curated premium stories, and 9,000+ magazines and newspapers.

MORE STORIES FROM OPEN SOURCE FOR YOUView All
Amazon Bedrock: A Boon for the Financial Services Industry
Open Source For You

Amazon Bedrock: A Boon for the Financial Services Industry

Amazon Bedrock is a fully managed service that provides access to foundation models from top AI providers, enabling organisations to build and scale generative AI applications. It is specifically designed to bring AI solutions to the financial sector. Let's explore all that it can do...

time-read
9 mins  |
December 2024
Quantum-Safe VPNs: The Future of Secure Communication
Open Source For You

Quantum-Safe VPNs: The Future of Secure Communication

As quantum computing continues to advance, it poses a significant threat to traditional cryptographic algorithms that secure our digital communications. Virtual private networks (VPNs), which rely heavily on encryption, are particularly vulnerable. Quantum-safe VPNs utilise post-quantum cryptographic algorithms to protect against quantum attacks.

time-read
3 mins  |
December 2024
Popular Open Source Toolkits for Quantum Machine Learning
Open Source For You

Popular Open Source Toolkits for Quantum Machine Learning

Quantum machine learning is becoming increasingly popular due to its ability to solve the complex problems of the AI age. Here are a few open source libraries and frameworks that help with quantum computations.

time-read
5 mins  |
December 2024
Quantum Computing: Harnessing Open Source for Innovation and Accessibility
Open Source For You

Quantum Computing: Harnessing Open Source for Innovation and Accessibility

We explore how open source initiatives are shaping the future of quantum computing, making it more accessible and driving innovation through collaboration.

time-read
9 mins  |
December 2024
How Quantum Computing Differs from Classical Computing
Open Source For You

How Quantum Computing Differs from Classical Computing

Despite being in its infancy, quantum computing has numerous potential applications in modelling, cybersecurity, AI/ML, and other fields. But how do quantum and classical computing compare with each other? Let's find out...

time-read
4 mins  |
December 2024
From Bits to Qubits: The Growth Story of Quantum Computing
Open Source For You

From Bits to Qubits: The Growth Story of Quantum Computing

Quantum computing may still be in the early stages of evolution, but its potential impact on everyday life is significant. We delve into the key concepts behind it, the reasons for its rapid growth, and how global advancements are shaping its future.

time-read
10+ mins  |
December 2024
Pytket: A Comprehensive Guide to Quantum Circuit Design
Open Source For You

Pytket: A Comprehensive Guide to Quantum Circuit Design

Pytket stands out as a powerful toolkit in the realm of quantum computing, offering a suite of features that cater to both researchers and industry practitioners. Its key strengths include optimisation, platform-agnostic support, flexible quantum circuit design and hybrid algorithm support. These features make Pytket a versatile tool for various quantum computing applications, from machine learning and cryptography to optimisation problems in industrial settings.

time-read
10+ mins  |
December 2024
Cirq: The Open Source Framework for Programming Quantum Computers
Open Source For You

Cirq: The Open Source Framework for Programming Quantum Computers

Explore the key features, capabilities, and impact of Cirq, an open source quantum computing framework developed by Google, on the quantum programming landscape.

time-read
4 mins  |
December 2024
The Role of Open Source in Accelerating Quantum AI
Open Source For You

The Role of Open Source in Accelerating Quantum AI

Here's an overview of how open source frameworks are being utilised to build quantum machine learning models, including quantum neural networks and quantum kernel methods. The challenges and future directions in the quantum AI landscape are also discussed.

time-read
7 mins  |
December 2024
Quantum Machine Learning: An Overview
Open Source For You

Quantum Machine Learning: An Overview

Quantum machine learning (QML) is a burgeoning field at the intersection of quantum computing and artificial intelligence. In recent years, the integration of quantum mechanics with machine learning algorithms has sparked substantial interest among researchers and technologists alike. Here's a quick look at the essentials of creating quantum algorithms for AI models, their practical use cases on open source platforms, and best practices for implementing these advanced algorithms.

time-read
7 mins  |
December 2024