TezzNative v1.1.0 is hardening toward production. View roadmap

TezzDB guide

Embedded data for TezzNative applications.

TezzDB is a beta surface. Use it deliberately, test migrations, and pin SDK versions for production deployments.

Basic flow
import "tezzdb"

fn main():
  db:*TezzDb = tezzdb.open("app.tdb")
  tezzdb.set(db, "name", "TezzNative")
  say tezzdb.get(db, "name")
  tezzdb.close(db)

Production notes

  • Keep backups before schema migrations.
  • Use release-pinned SDKs.
  • Add database smoke tests for application workflows.