athena_rs 3.18.0

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod bootstrap;
mod daemon_config;
mod identity;
mod process;
mod worker_runtimes;

pub use bootstrap::{RuntimeBootstrapContext, load_runtime_bootstrap_from_env};
pub use daemon_config::DaemonRuntimeConfig;
pub use identity::{DaemonIdentity, install_process_daemon_identity};
pub use process::{ProcessRuntimeGuard, initialize_process_runtime};
pub use worker_runtimes::{
    run_backup_worker_runtime, run_deferred_query_worker_runtime, run_legacy_worker_runtime,
    run_typesense_worker_runtime, spawn_api_inline_runtime, spawn_backup_worker_runtime,
    spawn_deferred_query_worker_runtime, spawn_legacy_worker_runtime,
    spawn_typesense_worker_runtime, wait_for_shutdown,
};