Expand description
Entity table: indirection layer for arena stores.
Each composite object (string, array, dict) is identified by an EntityId.
The entity table maps EntityId → EntityMeta, which records the offset
into the backing store’s data vec, the allocated length, the save level
at creation/last COW copy, and flags (global, gc_mark).
Structs§
- Entity
Meta - Metadata for one entity in an arena store.
- Entity
Table - Indirection table mapping
EntityIdto metadata about stored data.