Documentation

Absolute DB Docs

50+ documents covering everything from first install to enterprise clustering, vector search, security, and compliance.

✨ Features

⚡ Quick Reference

Install & build

bash
# One-line install
curl -fsSL https://downloads.absolutedb.com/install.sh | bash

# Or build from source
git clone https://github.com/supportcall/AbsoluteDB
cd AbsoluteDB
make release      # CLI ~154 KB · server ~230 KB · lite ~154 KB

# Run
./bin/absdb            # interactive CLI
./bin/absdb-server     # PG wire port 5433 + REST 8080

Connect & query

bash
# PostgreSQL client (port 5433)
psql -h localhost -p 5433 -U $(whoami)

# Health check
curl http://localhost:8080/health

# Python
import psycopg2
conn = psycopg2.connect(host='localhost', port=5433, user='myapp')

# Vector search
SELECT id, title FROM docs
ORDER BY embedding <-> '[0.1,0.2,...]'::vector
LIMIT 10;

Ready to run Absolute DB?

~154 KB binary  ·  zero external dependencies  ·  2,737 tests passing  ·  SQL:2023 100%

Download Free → View Pricing Contact Us