wg-async
wg-async copied to clipboard
Working group dedicated to improving the foundations of Async I/O in Rust
This issue tracks the steps for setting up a new initiative in the async vision [roadmap]. Please read the [instructions for owning an initiative][owning]. Top-level goal: #242 Async fn everywhere...
This issue tracks the steps for setting up a new top-level goal in the async vision [roadmap]. Please read the [instructions for owning a goal][owning]. Goal owner: @tmandry - [x]...
### Brief summary I will try to write my experience here as a story. I am like Niklaus. interested in programming, could write basic programs.i thought i would make an...
This is an attempt to create a coherent "status quo" section that both - highlights what we see as the biggest problems we see for async rust (details not yet...
### Brief summary I/O Uring integration has been much discussed, but we don't have any status quo stories talking about it. ### Optional details * (Optional) Which [character(s)] would be...
* Character: [Barbara](https://rust-lang.github.io/wg-async-foundations/vision/characters/barbara.html) * Brief summary: Barbara tries to write SLOW in a way that it can be used across runtimes; she tries various approaches, none of which are fully...
### Brief summary Some stuff can't be written in a blocking model, even a non-blocking blocking model like async/await. By blocking I mean that when you do an async call,...
The current story has some possible alternative outcomes: * using `parking_lot::MutexGuard` which is `Send` * using `futures::lock::Mutex` (although TBH I don't know the difference between this and the tokio lock)...
Hi, thanks for the nice book! I was looking at the book and wanted to see some outputs on some examples, but it seems like almost all the code in...
### Brief summary Alan was working on a endpoint which would be making a large amount of async requests, and decided to do a join operation to await them in...