HomePlaygroundExpressionsDocsDriversStatusChangelog GitHub
January 1, 2026 NEW
🚀 Qdrant Vector Search 4x faster
QAIL's Qdrant driver achieves 4.00x speedup in batch queries using HTTP/2 pipelining. Zero-copy buffer pooling and direct wire protocol delivers 1.17x faster single queries than official client.
December 31, 2025
🏎️ ORM Benchmark: 50K Queries 27% faster
qail-pg (cached) achieves 4,534 q/s — 27% faster than SQLx (3,573 q/s) and 12% faster than SeaORM (4,032 q/s). Zero-alloc encoding + SQL hash caching.
December 27, 2025
🔌 Go IPC: 50 Million Queries 99% pgx
QAIL IPC daemon matches pure Go pgx performance! 237K vs 240K queries/sec with prepared statement caching. Zero CGO overhead.
December 27, 2025
🐍 Python IPC: 10 Million Queries 2x PyO3
Pure Python IPC client is 2x faster than PyO3! 248K queries/sec with socket+json, no Rust compilation needed.
December 27, 2025
🦎 Zig: 50 Million Queries 2.1x pg.zig
QAIL-Zig achieves 315K q/s (pipeline) and 35K q/s (single query) — 2.1x faster than pg.zig! 95% of native Rust performance with native Zig I/O.
December 27, 2025
Cross-Language Performance 2.6x Eloquent
PHP extension achieves 31K q/s single-query (2.6x faster than Eloquent ORM). Go CGO driver achieves 126K q/s (4.2x faster than GORM).
December 26, 2025
100M Row COPY Benchmark +28%
Native Rust achieves 1.36M rows/s COPY on 100 million rows (28% faster than asyncpg). Production-scale benchmarks prove QAIL wins every category.
December 23, 2025
172x Pipelining Speedup 172x
Query pipelining delivers 172x speedup over sequential execution. QAIL beats C libpq by 4% and Go pgx by 12% in 50M query stress test. 1.25M q/s with connection pooling.

Run Your Own Benchmarks

All benchmarks are reproducible. Clone the repo and run them yourself.

# Clone
git clone https://github.com/qail-io/qail.git

# Run Rust benchmarks
cargo run --release --bin fifty_million_benchmark
cargo run --release --bin copy_bench

# Run Python benchmarks
cd qail-py && maturin develop --release
python ../qail-bench/benchmarks/qail_copy_preencoded_bench.py
View on GitHub