Dom
Dom
Hi @davidglavas We built `mpjbt` to perform a as-close-as-reasonably-possible-for-real-life-end-users comparison of MongoDB and Postgres, but it could be used for benchmarking just the Postgres implementation - I hadn't considered the...
I think this is good for another pass :+1:
Wow don't I feel like my time spent on the PRs, and trying to work with you, was worth it. What a lovely way to work with people. Sorry @abonander...
Hi @hawkw, I've been playing with this locally and have a working prototype that records various stats about an (un)bounded mpsc channel:  I've also...
Hi @hawkw, I had a play around with the `eliza/fix-register-deadlock` branch, but unfortunately there is still a deadlock during init. I have attached a full backtrace below, but it appears...
I've pushed my tokio instrumentation changes and pre-emptively [opened a PR][1], using that branch gives us a simple reproducer: ```rust use std::time::Duration; #[tokio::main(flavor = "current_thread")] async fn main() { console_subscriber::init();...
Good point! I guess we _could_ use a global, monotonic counter to tag each `Semaphore` instance with a unique counter value, and panic if `self.counter_value != other.counter_value`. This is a...
I have pushed a commit that prevents merging of unrelated Semaphore permits - the pointer check is a great idea. As for the name, I hold no strong opinions. I...
Done in #4948.
I'm not really sure I understand what's happening with the failing wasm test: https://github.com/tokio-rs/tokio/runs/8118383257?check_suite_focus=true Does `#[should_panic]` not catch panics on wasm targets?