Local storage, cloud sync, and blob management for object graphs.
Three tiers: the in-memory model, local storage in IndexedDB (an object pool plus a content-addressable blob pool), and cloud storage with addressing nodes that point to object and blob records. Mutations propagate synchronously to local and asynchronously to cloud; reads resolve from whichever tier is closest.
IndexedDB-backed persistence for object graphs using dirty tracking and automatic serialization.
View →Cloud sync for object pools and collections using Firebase Storage.
View →Content-addressable storage for binary data like images, audio, and video.
View →