ydb 0.16.0

Crate contains generated low-level grpc code from YDB API protobuf, used as base for ydb crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod pool;
mod table_pool;

#[cfg(test)]
mod regression_tests;

pub use pool::{SessionPoolSettings, SessionPoolStats};

pub(crate) use pool::{spawn_pool_release, SessionPool, SessionPoolLease};

pub(crate) use table_pool::TableSessionPool;

/// Default session pool settings for a newly created [`crate::Client`].
pub fn default_session_pool_settings() -> SessionPoolSettings {
    SessionPoolSettings::default()
}