Product

Transactional engine

A serious OLTP core — MVCC, WAL, real Postgres semantics.

WHAT'S INSIDE

  • RocksDB-backed LSM row store
  • MVCC with snapshot + serializable (SSI) isolation
  • WAL group-commit + tested crash recovery
  • Savepoints, sequences, FK CASCADE, JSONB
  • Secondary indexes: hash, GIN, GiST, SP-GiST
  • RANGE / LIST / HASH partitioning
connect — it’s just Postgres
# EzraDB speaks the PostgreSQL wire protocol — any PG client connects
psql -h your-host -p 5432 -U ezra -d ezra -c 'SELECT version();'
-- PostgreSQL 18.0 (EzraDB 0.1)