Movatterモバイル変換


[0]ホーム

URL:


Docs.rs

Cratebb8

Source
Expand description

A full-featured connection pool, designed for asynchronous connections(using tokio). Originally based onr2d2.

Opening a new database connection every time one is needed is bothinefficient and can lead to resource exhaustion under high trafficconditions. A connection pool maintains a set of open connections to adatabase, handing them out for repeated use.

bb8 is agnostic to the connection type it is managing. Implementors of theManageConnection trait provide the database-specific logic to create andcheck the health of connections.

§Example

Using an imaginary “foodb” database.

#[tokio::main]async fnmain() {letmanager = bb8_foodb::FooConnectionManager::new("localhost:1234");letpool = bb8::Pool::builder().build(manager).await.unwrap();for _ in0..20{letpool = pool.clone();        tokio::spawn(async move{letconn = pool.get().await.unwrap();// use the connection            // it will be returned to the pool when it falls out of scope.});    }}

Structs§

Builder
A builder for a connection pool.
NopErrorSink
AnErrorSink implementation that does nothing.
Pool
A generic connection pool.
PooledConnection
A smart pointer wrapping a connection.
State
Information about the state of aPool.
Statistics
Statistics about the historical usage of thePool.

Enums§

AddError
Error type returned byPool::add(conn)
QueueStrategy
bb8’s queue strategy when getting pool resources
RunError
bb8’s error type.

Traits§

CustomizeConnection
A trait which provides functionality to initialize a connection
ErrorSink
A trait to receive errors generated by connection management that aren’ttied to any particular caller.
ManageConnection
A trait which provides connection-specific functionality.

[8]ページ先頭

©2009-2025 Movatter.jp