40+ documents covering everything from first install to enterprise clustering.
Fresh-server setup, prerequisites, all platforms, one-line installer, Docker, service setup.
Makefile targets, object-file build system, AddressSanitizer, UBSan, Valgrind, CI recipe.
Ubuntu, RHEL, macOS, Windows WSL, Docker, Kubernetes — full platform-by-platform guide.
Day-to-day usage, CLI commands, connecting clients, basic SQL, importing data.
Complete 142-keyword reference. DDL, DML, CTEs, window functions, JOINs, subqueries, 30+ built-in functions.
Embedding Absolute DB in C/C++ applications. Full function reference, types, result handling, and error codes.
Embedding, Python client, REST API usage, connection pooling, build system integration.
Server configuration, user management, GRANT/REVOKE, backup, monitoring, health checks, log management.
systemd service, Docker Compose, Nginx reverse proxy, SSL termination, production checklist.
How to activate PRO/ENT keys, all methods (CLI, env, systemd, Docker, K8s), verification steps.
How Absolute DB delivers ACID-grade durability, sub-millisecond queries, and unified data primitives in under 160 KB.
Measured benchmarks: inserts, point queries, vector search, graph traversal, live queries, cache.
Absolute DB vs SQLite vs PostgreSQL — binary size, latency, throughput, memory comparison.
Raft clustering, distributed sharding, multi-region, rolling upgrades, high availability setup.
Cluster benchmarks, replication latency, failover times, multi-region throughput.
GDPR, SOC 2, HIPAA, PCI-DSS. Audit logging, data masking, encryption, RLS policies.
Community vs Professional vs Enterprise — full feature matrix, restrictions, pricing, key format.
The complete documentation suite covers everything from embedded IoT deployments to planetary-scale clusters. Contact us for the full documentation package.
# Prerequisites (Ubuntu/Debian — blank server)
sudo apt update
sudo apt install -y gcc make build-essential
# Download and build
curl -sSL https://absolutedb.com/install.sh | bash
cd absdb
make release # single ~154 KB binary, zero deps
# Run
./bin/absdb # interactive CLI
./bin/absdb-server # server (PG wire + REST)
# Health check (no extra tools)
curl http://localhost:8080/health
# PostgreSQL client
psql -h localhost -p 5433 -U $(whoami)
# Python
pip install psycopg2-binary
python3 -c "
import psycopg2
conn = psycopg2.connect(
host='localhost', port=5433,
user='myapp') # trust auth — no password needed by default
..."
# Activate PRO/ENT licence
export ADB_LICENSE_KEY=PRO-XXXX-XXXX-XXXX-XXXX
./build/absdb-server