Skip to main content

PutCell

Stores a cell with its primary key and secondary indexes (source, time, tag).

GetCell

Retrieves the visible cell at a packed coordinate.

DeleteCell

Removes a cell and all associated data (secondary indexes, facets, outbound edges). Idempotent — deleting a non-existent cell returns nil. Seams are NOT removed.
MVCC: Creates a tombstone. Cascades to remove the cell’s embedding and HNSW node automatically.

Secondary indexes

AscendCellsBySource

Scan cells by source ID.

AscendCellsInTimeBucket

Scan cells in a UTC week bucket.

AscendCellsByTag

Scan cells by tag.

AscendDistinctTags

List distinct tag strings visible at this snapshot.

ListExistingTopics

Return sorted distinct tags (topic names) for tools.

Batch operations

BatchPutCells

Batched multi-cell write with progress and continue-on-error.

Cell templates

Factory functions for common cell types:

See also

  • Cells — Core memory units
  • Facets — Facet operations
  • Edges — Edge operations