Object storage holds the truth — an append-only ledger of entities, edges, and evidence. BM25, vectors, and adjacency are derived, range-read in kilobytes, and rebuildable. The network you see is the database.
bucket://acme/graphs/main/ └─ branches/main/ ├─ wal/ ............ truth ├─ fts/bm25/v1/ ... terms ├─ ann/v1/ ........ vectors └─ adjacency/v3/ .. edges
# invite-only beta — request access at hello@doria.sh, # then talk to your cell over HTTPS with an API key export DORIA=https://db.eu.doria.sh export KEY=dk_live_… # console → api keys # commit facts to the append-only ledger curl -s $DORIA/api/graph/commit \ -H "authorization: bearer $KEY" --json @facts.json # hybrid search: BM25 + vector + graph, fused curl -s "$DORIA/api/search?query=customer+identity+data" \ -H "authorization: bearer $KEY" ✓ hybrid results in 38 ms