A unified database — SQL, vector, graph, full-text search, time-series, key-value — all in one binary. An AI-native platform delivering enterprise-grade scale and performance, hardened by post-quantum cryptography (FIPS 203/204/205), spanning from embedded edge to hyperscale enterprise and LLM workloads.
Community edition is free forever. No feature flags, no license nags - just the full engine.
142 keywords, SQL:2023 conformance, JOINs, CTEs, window functions, CUBE/ROLLUP/GROUPING SETS, prepared statement plan cache (~2 µs cached), stored procedures, triggers, full ACID compliance.
HNSW index, sub-0.1 ms top-10. Sparse vectors (SPLADE/BM25-sparse, 30K dims). Matryoshka adaptive dims (OpenAI text-embedding-3 compatible). Hybrid BM25 + vector RRF in one query.
RELATE, BFS/DFS, shortest path, PageRank. openCypher MATCH/CREATE/RETURN — drop-in Neo4j migration path. 1.3 B traversals/sec.
BM25/BM25F ranking, trigram similarity (pg_trgm), snippet highlighting. NL2SQL() natural language to SQL — in-database, offline-capable.
29.2 M notifications/sec via LISTEN/NOTIFY and WebSocket. CREATE STREAMING VIEW for continuous query processing with sliding windows and watermarks.
Snapshot isolation, savepoints, instant crash recovery, advisory locks (Flyway/Liquibase/Alembic compatible), foreign keys with CASCADE/SET NULL/RESTRICT.
Full PG v3 wire protocol with built-in connection pooler (eliminates PgBouncer). Advisory locks, LISTEN/NOTIFY, psql, psycopg2, JDBC, pgAdmin, DBeaver — zero code changes.
JSON over HTTP, gRPC/HTTP2, Redis RESP3, GraphQL. 8-panel management console. Query result cache (TTL-based, 256 MB, auto-invalidation).
Pure C11. No OpenSSL, no Boost, no runtime. LDAP/AD and OAuth2/OIDC (Auth0, Okta, Azure AD) auth built in. Single ~8 MB binary. Starts in <2 seconds.
All numbers are from make all. Run them yourself - they're embedded in the test suite.
Measured on a standard Linux VM. Source: make all output, embedded in test suites 2–4.
# Download and build
curl -sSL https://downloads.absolutedb.com/install.sh | bash
cd AbsoluteDB
make release # Single binary, zero deps
# Interactive CLI
./bin/absdb # In-memory mode
./bin/absdb mydb.db # File-backed mode
# Start the server (PostgreSQL wire + REST API)
./bin/absdb-server
# → Listening on :5433 (PG wire) and :8080 (HTTP)
# Connect with psql
psql -h localhost -p 5433 -U $(whoami)
Same binary for all tiers - your DM Data Vault licence key activates capabilities. Full comparison →