very fast at protocol indexer with flexible filtering, xrpc queries, cursor-backed event stream, and more, built on fjall
rust fjall at-protocol atproto indexer
58
fork

Configure Feed

Select the types of activity you want to include in your feed.

[ingest] store resync buffer commits with named tags

dawn ffed837d 462a3a55

+1 -1
+1 -1
src/ops.rs
··· 27 27 28 28 pub fn persist_to_resync_buffer(db: &Db, did: &Did, commit: &Commit) -> Result<()> { 29 29 let key = keys::resync_buffer_key(did, DbTid::from(&commit.rev)); 30 - let value = rmp_serde::to_vec(commit).into_diagnostic()?; 30 + let value = rmp_serde::to_vec_named(commit).into_diagnostic()?; 31 31 db.resync_buffer.insert(key, value).into_diagnostic()?; 32 32 debug!( 33 33 did = %did,