alpha
Login
or
Join now
microcosm.blue
/
microcosm-rs
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
remove some prints
author
phil
committer
tangled.org
date
4 months ago
(Feb 24, 2026, 5:13 PM UTC)
commit
bb9f4d21
bb9f4d21b91ed55513c492e065ec7e00edd8c00e
parent
decf5597
decf55978f8b7185356bfb0c54e7d0678619b3ed
-5
1 changed file
Expand all
Collapse all
Unified
Split
constellation
src
storage
rocks_store.rs
-5
constellation/src/storage/rocks_store.rs
Reviewed
···
961
961
let after = after.map(|s| s.parse::<u64>().map(TargetId)).transpose()?;
962
962
963
963
let Some(target_id) = self.target_id_table.get_id_val(&self.db, &target_key)? else {
964
964
-
eprintln!("nothin doin for this target, {target_key:?}");
965
964
return Ok(PagedOrderedCollection::empty());
966
965
};
967
966
···
1022
1021
.take(1)
1023
1022
.next()
1024
1023
else {
1025
1025
-
eprintln!("no forward match");
1026
1024
continue;
1027
1025
};
1028
1026
···
1172
1170
None => None,
1173
1171
};
1174
1172
1175
1175
-
eprintln!("cursor: {:#?}", cursor);
1176
1176
-
1177
1173
// (__active__) did ids and filter targets
1178
1174
let filter_did_ids: HashMap<DidId, bool> = filter_link_dids
1179
1175
.iter()
···
1225
1221
.into_iter()
1226
1222
.enumerate()
1227
1223
.filter(|(_, RecordLinkTarget(rpath, target_id))| {
1228
1228
-
eprintln!("rpath.0: {} vs. path_to_other: {path_to_other}", rpath.0);
1229
1224
rpath.0 == path_to_other
1230
1225
&& (filter_to_target_ids.is_empty()
1231
1226
|| filter_to_target_ids.contains(target_id))