Skip to content

Graphorin API reference v0.1.0


Graphorin API reference / @graphorin/store-sqlite / / SqliteStoreMode

Type Alias: SqliteStoreMode

ts
type SqliteStoreMode = "lib" | "server";

Defined in: packages/store-sqlite/src/index.ts:106

Library mode — single in-process connection. Server mode — opt-in WorkerPool (1 writer + N readers); WAL hardening and the periodic wal_checkpoint(RESTART) are mandatory in this mode.

Stable