feat: use cap 100

This commit is contained in:
2021-01-24 23:48:44 +08:00
parent a8c9c92f75
commit 6769322905

View File

@@ -2,7 +2,7 @@ use std::thread;
use crossbeam_channel::bounded;
fn main() {
let (s, r) = bounded(0);
let (s, r) = bounded(100);
let mut ts = vec![];
for ti in 0..4 {