Search code examples
How can tokio tasks access shared data in Rust?...

rustrust-tokio

Read More
How to manage high-throughput requests with computationally-intensive tasks in a Hyper/Axum webserve...

rustasync-awaitrust-tokiohyperrust-axum

Read More
Is it possible to run Axum on a single thread?...

rustrust-tokiorust-axum

Read More
Parallelly processing HUGE file by splitting it into logical shards...

rustparallel-processingrust-tokiofile-processing

Read More
Why is "the `async` keyword missing" when using Tokio and Rocket?...

rustrust-tokiorust-rocket

Read More
Tokio Cannot drop a runtime in a context where blocking is not allowed. This happens when a runtime ...

rustrust-cargorust-tokio

Read More
Why does !Send value that is drop()'d before .await mean the Future is !Send?...

rustasync-awaitfuturerust-tokio

Read More
Tokio thread management: restart subsidiary thread from inside encapsulating thread?...

multithreadingrustrust-tokio

Read More
How to make AsyncWrite movable when spawning async task?...

rustrust-tokio

Read More
How to call a poll_* method?...

rustrust-tokio

Read More
If "futures do nothing unless awaited", why does `tokio::spawn` work anyway?...

rustasync-awaitfuturerust-tokio

Read More
async fn calling split generates error "borrowed value does not live long enough"...

asynchronousrustrust-tokio

Read More
How to properly do batches of HTTP requests using Tokio and Surf?...

asynchronousrustrust-tokio

Read More
How to use async/await for not-async io-operation? such as get/put in leveldb...

asynchronousrustrust-tokioleveldb

Read More
tokio::net::TcpStream how to handle any kind of errors?...

rustrust-tokio

Read More
no implementation for `dyn std::error::Error == dyn std::error::Error`...

rustasync-awaitrust-cargorust-tokioactix-web

Read More
Why does tokio::spawn not require Sync?...

rustrust-tokio

Read More
How to serialize struct with multiple fields protected by tokio's RwLock?...

rustrust-tokioserde

Read More
How to avoid move of possibly-uninitialized variable for MutexGuard interface?...

rustrust-tokio

Read More
How do I send a 404 HTTP response without a HTTP library?...

httprusttcprust-tokio

Read More
How to workaround async incompatibilities when using mongodb-1.2.2 and rocket-0.5.0-rc.1?...

mongodbrustrust-tokiorust-rocket

Read More
Awaiting a Number of Futures Unknown at Compile Time...

rustasync-awaitrust-tokio

Read More
What is the smallest feature set to enable polling a future with Tokio?...

rustrust-tokio

Read More
How to use async to parallelize heavy computation?...

rustparallel-processingrust-tokiorust-async-std

Read More
When does #[tokio::main] spawn threads?...

multithreadingrustrust-tokio

Read More
Why does my Tokio server listening for UDP packets use 100% CPU until its OOM killed?...

multithreadingnetwork-programmingrustudprust-tokio

Read More
How can I create a Tokio timer to debounce reception of network packets?...

asynchronousrusttimerrust-tokio

Read More
Error: Could not find main or io in tokio, invalid return type `impl Future`...

httprustrust-tokiohyper

Read More
What is the difference between `future` and `async move { future }`?...

rustasync-awaitrust-tokio

Read More
How can future.then() return a Future?...

rustrust-tokio

Read More
BackNext