tracks lexicons and how many times they appeared on the jetstream

refactor(server): par iter for encoding blocks

ptr.pet 5c54b0c9 cbc9e661

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