When configuring a database connection in a backend application, you've probably seen code like this:
sqlDB.SetMaxOpenConns(5)
sqlDB.SetMaxIdleConns(1)
sqlDB.SetConnMaxIdleTime(2 * time.Minute)
sqlDB.SetConnMaxLifetime(30 * time.Minute)
When configuring a database connection in a backend application, you've probably seen code like...
When configuring a database connection in a backend application, you've probably seen code like this:
sqlDB.SetMaxOpenConns(5)
sqlDB.SetMaxIdleConns(1)
sqlDB.SetConnMaxIdleTime(2 * time.Minute)
sqlDB.SetConnMaxLifetime(30 * time.Minute)

If you have ever built an application that talks to a database, you have used a database connection....

In a previous guide, we discussed the high-level concepts of how databases manage multiple...

Every backend engineer has lived through this scenario: It’s a high-traffic Tuesday, your application...

Why HikariCP might not be enough and where PgBouncer steps in. 1. Why are Connections...

Explore the rationale behind developing a new PostgreSQL connection pooler to address scalability, performance, and modern…

Explore advanced PgBouncer configurations and strategies to achieve a 4x throughput increase for PostgreSQL workloads, focusing…