Production notes
- Keep backups before schema migrations.
- Use release-pinned SDKs.
- Add database smoke tests for application workflows.
TezzDB guide
TezzDB is a beta surface. Use it deliberately, test migrations, and pin SDK versions for production deployments.
import "tezzdb"
fn main():
db:*TezzDb = tezzdb.open("app.tdb")
tezzdb.set(db, "name", "TezzNative")
say tezzdb.get(db, "name")
tezzdb.close(db)