powdb-server 0.9.0

Async TCP server for PowDB with a binary wire protocol — PowQL native, SQL frontend included
Documentation
1
2
3
4
5
6
7
8
//! PowDB TCP server — handles client connections, authentication, and query dispatch.
//!
//! Supports TLS via `tokio-rustls`, password authentication with rate limiting,
//! and concurrent query execution via `spawn_blocking`.

pub mod handler;
pub mod metrics;
pub mod protocol;