Expand description
SQLite DedupeStore implementation.
Keyed by event id (stored as TEXT). mark_if_new overrides the
default exists+mark path with a single
INSERT ... ON CONFLICT DO NOTHING RETURNING so concurrent dedupe
checks converge without a race. All SQLite work runs in
spawn_blocking.