tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

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

feat(server): increase stream send rate

dusk c2a22b18 28ac2ab1

+2 -2
+2 -2
server/src/api.rs
··· 128 128 }, 129 129 ); 130 130 updates += 1; 131 - // send 10 times every second max 131 + // send 20 times every second max 132 132 let per_second = db.eps(); 133 - if updates >= per_second / 10 { 133 + if updates >= per_second / 20 { 134 134 let msg = serde_json::to_string(&EventsRef { 135 135 events: &buffer, 136 136 per_second,