Lesson 05← back to roadmap
Two verbs. Everything else is a query.
python
rid = notes.place([0.1, 0.2, 0.3, 0.4], {"tag": "a"})
notes.erase(rid) # marks tombstone; checkpoint/compact reclaims spaceFrom docs/storage.md: the WAL supports insert, erase, and insert_ex (for records carrying DocumentAttachment, ChunkInfo, or EmbeddingLineage). Crash recovery restores full record state, not only vectors.