Results 145 comments of Qi

```rust tasks.spawn({ let cancel = cancel.clone(); async move { let _guard: DropGuardRef

Hi @SwishSwushPow, I opened a duplicated PR (#7541) before noticing your PR, sorry for that. Are you still going to work on it? If so, I will close my duplicated...

I would like to share my criteria for determining whether a document is good. When reading a crate's documentation, I often quickly read through the document in about ten seconds,...

A good docs is not just about wording, it also includes the interface itself. For example, is the interface self-descriptive? Will the behavior surprise the downstream? Good wording + good...

@Darksonn Thanks for you comment! > Do we change it so that each worker thread sleeps with a timeout equal to the smallest timer on its own local queue? Yes,...

@Darksonn Just another section for the original reply to avoid long comment. *** > Currently, the runtime continues working okay if one of your worker threads get blocked Just checking...

> I guess this is another instance of [#6315](https://github.com/tokio-rs/tokio/issues/6315). @Darksonn I left some of my thoughts in #6315.

> Nginx is a shared-nothing system, and as such the timer wheels are going to be local because everything is local. @Noah-Kennedy Yes, I agreed that (almost) everything is local...

@carllerche Thanks for your comment! > My second thought is that using a channel will result in an allocation per cancellation. Thanks for pointing this out. I agree, theoretically we...