1 repositorio
Connection pooling strategies that avoid mutexes in favor of non-blocking concurrency primitives.
Distinct from Connection Pooling: Specifically targets the lock-free nature of the pool, as opposed to general connection pooling.
Explore 1 awesome GitHub repository matching data & databases · Lock-Free Implementations. Refine with filters or upvote what's useful.
HikariCP is a high-concurrency JDBC connection pooling library for Java applications. It provides a reusable set of database connections to reduce the overhead of creating new connections for every request, enabling low-latency database access for applications handling large volumes of simultaneous requests. The project utilizes lock-free connection pooling and non-blocking data structures to ensure high performance. It includes specialized optimizations such as bytecode-optimized statement caching on the driver side to reduce SQL parsing overhead and proxy-based connection wrapping to track
Employs lock-free collections to ensure extremely low latency in high-concurrency environments.