feat add todo
All checks were successful
Build / build-server (push) Successful in 3m48s
Build / build-client (push) Successful in 3m7s

This commit is contained in:
tqcq
2025-07-15 17:41:56 +08:00
parent fb7edd3941
commit c30219536b
3 changed files with 6 additions and 0 deletions

View File

@@ -1,2 +1,6 @@
# Info
![build: no status](https://code.uocat.com/tqcq/jojo/actions/workflows/build.yaml/badge.svg)
# Todo
- [ ] tokio client 并发请求
- [ ] tokio server 并发写入

View File

@@ -28,6 +28,7 @@ async fn main() {
let mut ids = Vec::new();
let mut bf = Bloom::new_for_fp_rate(1000000usize, 0.0001f64).unwrap();
// TODO: @tqcq parallel request
loop {
// let username: String = (4..rng.random_range(4..20))
// .into_iter()

View File

@@ -13,6 +13,7 @@ struct AppState {
db_pool: MySqlPool,
}
// TODO: @tqcq support pool for axum
#[tokio::main]
async fn main() {
tracing_subscriber::fmt::init();