Skip to main content

Module pool

Module pool 

Source
Expand description

Connection pooling for SQLite backend using r2d2.

This module provides a wrapper around r2d2’s connection pool specifically configured for SQLite databases. Pooling enables concurrent access to the database and reduces connection overhead.

Structs§

PoolManager
Wrapper around r2d2 Pool for SQLite connection management.

Type Aliases§

ConnectionManager
Type alias for the r2d2 SQLite connection manager.
PooledConnection
Type alias for a pooled connection that can be checked out from the pool.