Hacker News
- Stop worrying about blocking: the new async-std runtime for Rust, inspired by Go https://async.rs/blog/stop-worrying-about-blocking-the-new-async-std-runtime/ 2 comments
- The Various Kinds of IO – Blocking, Non-Blocking, Multiplexed and Async https://www.rubberducking.com/2018/05/the-various-kinds-of-io-blocking-non.html 64 comments
- Async hazard: MMAP is blocking IO https://huonw.github.io/blog/2024/08/async-hazard-mmap/ 115 comments
- Async_executors, a building block for executor-agnostic Rust libraries https://blog.wnut.pw/2020/02/25/anouncing-async_executors-a-building-block-for-executor-agnostic-libraries/ 6 comments
- Monocle - An async programming framework with a blocking look-alike syntax http://github.com/saucelabs/monocle#readme 14 comments
Lobsters
- Stop worrying about blocking: the new async-std runtime, inspired by Go https://async.rs/blog/stop-worrying-about-blocking-the-new-async-std-runtime/ 15 comments release , rust
- Async-block https://github.com/sabof/async-block 5 comments emacs
- drakma-async: A conversion of the drakma HTTP library to be non-blocking https://github.com/orthecreedence/drakma-async 6 comments lisp
- Stop worrying about blocking: the new async-std runtime, inspired by Go https://async.rs/blog/stop-worrying-about-blocking-the-new-async-std-runtime/ 21 comments golang
- Stop worrying about blocking: the new async-std runtime, inspired by Go https://async.rs/blog/stop-worrying-about-blocking-the-new-async-std-runtime/ 150 comments rust
- base64-async: Non-blocking chunked Base64 encoding https://github.com/lukechilds/base64-async 5 comments node
- When is it worse to use the Spring Boot Reactive Stack (non-blocking async) than the Servlet Stack (blocking 1 request per thread model)? None 2 comments learnjava
- The Various Kinds of IO - Blocking, Non-blocking, Multiplexed and Async. https://www.rubberducking.com/2018/05/the-various-kinds-of-io-blocking-non.html 12 comments programming
- Is the use of Task.Run around a blocking operation necessary within an async method https://stackoverflow.com/questions/25699216/time-consuming-tasks-inside-async-await-method 29 comments csharp
- Async hazard: mmap is secretly blocking IO https://huonw.github.io/blog/2024/08/async-hazard-mmap/ 67 comments rust
- Tutorial - Build with Naz - Rust async, non-blocking, concurrent, parallel, event loops, cancellation safety https://developerlife.com/2024/05/19/effective-async-rust/ 3 comments rust
- Detecting blocking calls using async in C# | James Crosswell https://www.jamescrosswell.dev/posts/async-detecting-blocking-calls/ 12 comments dotnet
- Defer blocks and async drop https://www.ncameron.org/blog/defer-blocks-and-async-drop/ 56 comments rust
- How to clean up a fetch request inside a useEffect if the async function is declared outside the useEffect block? https://react.dev/learn/synchronizing-with-effects#fetching-data 6 comments reactjs
- How can I move variable outside async block? https://github.com/margual56/turing-machine-2.0/issues/6 13 comments rust
- Trying to make an non-blocking, Async Named Pipe in Windows, and I get stuck on ERROR_IO_PENDING on read. I need help. https://hastebin.com/uvoquguren.cpp 3 comments askprogramming
- Linux 6.0 changelog (2 weeks late): includes a new Runtime Verification system; io_uring features such as async buffered writes, an userspace block driver, and networking zero-copy send; Btrfs send v2, XFS scalability enhancements; task scheduler performance improvements; new BPF features. https://kernelnewbies.org/Linux_6.0 45 comments linux
- Really Async JSON Interface: a non-blocking alternative to JSON.parse to keep web UIs responsive https://github.com/federico-terzi/raji 54 comments javascript
- Why does this async block require move? https://www.reddit.com/r/rust/comments/lahb7o/why_does_this_async_block_require_move/ 10 comments rust
- What is difference between actix_web::web::block vs "vanilla" async? https://www.reddit.com/r/rust/comments/jzxh0l/what_is_difference_between_actix_webwebblock_vs/ 5 comments rust
- Why is this async code blocking? https://www.reddit.com/r/rust/comments/iwhkvk/why_is_this_async_code_blocking/ 3 comments rust
- rust-analyzer changelog #42 – now with async blocks and more! https://rust-analyzer.github.io/thisweek/2020/09/14/changelog-42.html 14 comments rust
- async / await, starting a process, and not blocking the UI thread https://www.reddit.com/r/csharp/comments/imm74t/async_await_starting_a_process_and_not_blocking/ 20 comments csharp
- event-listener: a synchronization primitive to turn non-blocking data structures into async or blocking data structures https://docs.rs/event-listener 7 comments rust
- Blocking - crate to wrap blocking calls for async IO https://twitter.com/stjepang/status/1259201346642853892 8 comments rust
- Anouncing async_executors, a building block for executor agnostic libraries https://blog.wnut.pw/2020/02/25/anouncing-async_executors-a-building-block-for-executor-agnostic-libraries/ 25 comments rust
- Blocking inside async code https://stjepang.github.io/2019/12/04/blocking-inside-async-code.html 59 comments rust
- Understanding thread::sleep blocking inside async fn https://blog.hwc.io/posts/rust-futures-threadsleep-and-blocking-calls-inside-async-fn/ 16 comments rust
- How to Write Async Await Without Try-Catch Blocks http://blog.grossman.io/how-to-write-async-await-without-try-catch-blocks-in-javascript/ 20 comments javascript
- How to Write Async Await Without Try-Catch Blocks in Javascript http://blog.grossman.io/how-to-write-async-await-without-try-catch-blocks-in-javascript/ 6 comments node
- How to Write Async Await Without Try-Catch Blocks in Javascript http://blog.grossman.io/how-to-write-async-await-without-try-catch-blocks-in-javascript/ 3 comments angularjs
- Async MRU plugin, no more UI block at startup! https://github.com/chemzqm/redismru.vim 6 comments neovim
- Bay Area Rust Meetup 2015-02: "Blocking and Async IO" https://air.mozilla.org/bay-area-rust-meetup-february-2015/ 4 comments rust
- How big is the advantage of a non-blocking async backend over a 1-thread-per-request backend? None 3 comments askcomputerscience