Ubuntu Linux
Free / OpenUbuntu 20.04, 22.04, 24.04 LTS (x86_64 & aarch64)
Native Debian packaging with systemd service configuration. Pre-compiled with AVX2 & NEON.
Free Edition is free to evaluate on your own hardware with 2 CPUs, native Cypher traversal, and exact vector search. Full source code is open on GitHub.
Official release binaries and packaging for all primary operating systems. Maintained and version-tracked via continuous integration.
Ubuntu 20.04, 22.04, 24.04 LTS (x86_64 & aarch64)
Native Debian packaging with systemd service configuration. Pre-compiled with AVX2 & NEON.
Debian 11 & 12 Bullseye / Bookworm (x86_64)
Standard tarball distribution or Debian package with zero runtime dependencies beyond GLIBC 2.31+.
M1, M2, M3, M4 series (ARM64 macOS 12+)
Apple Disk Image (.dmg) and standalone command line binary with NEON SIMD hardware acceleration.
Intel Core i7, i9, Xeon Mac hardware (macOS 11+)
Compiled with AVX2 SIMD vector extensions for accelerated cosine similarity and graph search.
Windows 10, 11, Server 2022 (64-bit)
Windows Installer MSI package or portable ZIP with PowerShell automation and console client.
Linux x86_64 (CUDA 12.x / Tensor Core support)
Unlocks 16–32 cores, CUDA GPU graph traversal, entropy dynamic worker, and online single-IP lock.
Launch the database with our built-in benchmark dataset and execute an end-to-end retrieval call in under 60 seconds.
Start LightningDB with a 28,000-node academic co-authorship corpus pre-loaded into memory:
cd ~/graphdb
./build/graphdb serve --people 20000 --papers 8000 --port 7475
Send a query to retrieve the 10 nearest papers and traverse 3 hops of related co-authors and citations:
curl -X POST http://localhost:7475/v1/rag \
-H "Content-Type: application/json" \
-d '{"query": "distributed consensus and vector search", "k": 10, "hops": 3}'
The response includes e2e_ns timing metadata directly from the C++ engine (typically < 1 ms for this corpus):
{
"hits": [...10 nearest documents...],
"subgraph_nodes": 4200,
"e2e_ns": 860000
}
Paid editions ship as an optimized binary and a cryptographic license bound to one machine. You send the hardware fingerprint. Pro adds CUDA GPU acceleration, entropy compaction, and 16 cores; Pro+ is 32 cores; Enterprise is unlimited and multi-server.
Run the fingerprint utility on your target production host or container:
graphdb license fingerprint
Provide your hardware key and desired core tier to our engineering sales team.
Place the returned graphdb.license file in your database root directory and start the service.
Verify our benchmark claims against Neo4j Community on your own hardware using our reproducible Docker harness.
# Run proof community script
bash scripts/proof_community.sh