LogoRobo.js
Framework

WALEntry

Interface: WALEntry

Complete WAL entry structure.

Stored at: _flashcore:wal:entry:{id} Optional segments at: _flashcore:wal:seg:{id}:{n}

Properties

PropertyTypeDescription
authWalAuthoritativeDelta[]Authoritative deltas (applied first). These are the "source of truth" changes.
derivedWalDerivedDelta[]Derived deltas (applied after authoritative). Best-effort; can be skipped in favor of rebuild.
idstringUnique entry ID (generated).
modelstringModel name.
namespace?stringModel namespace (optional).
opWalOpOperation type.
phaseWalPhaseCurrent phase of the operation.
segmented?WalSegmentInfoOptional segmentation info for large entries. If present, deltas are stored across segment keys.
timestampnumberTimestamp when entry was created (Date.now()).
undoWalAuthoritativeDelta[]Inverse deltas (only for rollback paths). Used to undo the operation if recovery decides to roll back.

On this page