consciousness/src/store
ProofOfConcept 3f644609e1 store: split mod.rs into persist.rs and ops.rs
mod.rs was 937 lines with all Store methods in one block.
Split into three files by responsibility:

- persist.rs (318 lines): load, save, replay, append, snapshot
  — all disk IO and cache management
- ops.rs (300 lines): upsert, delete, modify, mark_used/wrong,
  decay, fix_categories, cap_degree — all mutations
- mod.rs (356 lines): re-exports, key resolution, ingestion,
  rendering, search — read-only operations

No behavioral changes; cargo check + full smoke test pass.
2026-03-03 16:40:32 -05:00
..
mod.rs store: split mod.rs into persist.rs and ops.rs 2026-03-03 16:40:32 -05:00
ops.rs store: split mod.rs into persist.rs and ops.rs 2026-03-03 16:40:32 -05:00
parse.rs split capnp_store.rs into src/store/ module hierarchy 2026-03-03 12:56:15 -05:00
persist.rs store: split mod.rs into persist.rs and ops.rs 2026-03-03 16:40:32 -05:00
types.rs split capnp_store.rs into src/store/ module hierarchy 2026-03-03 12:56:15 -05:00
view.rs split capnp_store.rs into src/store/ module hierarchy 2026-03-03 12:56:15 -05:00