tracks lexicons and how many times they appeared on the jetstream

refactor(server): unnest nested par iter in sync

ptr.pet d6b2e4c8 5c54b0c9

verified
Changed files
+1 -1
server
src
db
+1 -1
server/src/db/mod.rs
···
data.into_par_iter()
.map(|chunk| {
chunk
-
.into_par_iter()
+
.into_iter()
.map(|(i, handle, max_block_size)| {
(i, handle.take_block_items(max_block_size), handle)
})