basak
basak
Downstream bug with analysis here: https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1961617 What's causing this is a change in behaviour between 8.0.27 and 8.0.28 (I think 8.0.23 in the bug title is wrong). MySQL is now...
For the record, here are the upstream kernel submission discussions: * https://patchwork.kernel.org/patch/10252315/ * https://lkml.org/lkml/2018/3/1/812 * https://www.spinics.net/lists/linux-bcache/msg05833.html
> The test code is assuming that tasks are scheduled in start_soon() order, which isn't guaranteed. No, it doesn't assume this. I think you misunderstand. The test code assumes that...
> It would help to clarify your use case. I have an async "value wrapper" that represents something in the real world that can change its value. It has an...
> Have you looked at trio-util AsyncValue? (Disclosure: I wrote it.) I discovered it fairly recently! My model is quite a bit older, but I have yet to publish it....
> I would think eventual consistency is more suitable for this domain most of the time. For example, you only care about the current state of the light switch, door...
> I'd be happy to chat more but I'd appreciate doing it somewhere else. I moved to gitter.
> "What is the use case" is relevant, and from experience Trio's author would ask the same. Sure, but I think I've made my use case clear. I think we've...
> the one thing everyone agrees on is not to implement it with memory channels... I've read that issue carefully now, and I don't see this agreement anywhere. Where are...
Thanks to @belm0 for pointing me to this issue. I've been doing broadcast messaging (slowest consumer backpressure, lossless) for a long time, originally with asyncio, then converted to Trio. I...