Motoyuki Kimura
Motoyuki Kimura
Yes, I agree. It would be safer to separate the fixes for #387 and the update of the slf4j-api 2.x into different releases. Considering the example of Slick, upgrading to...
@WojciechMazur This PR is still totally in progress, but could you just review [this commit](https://github.com/scala-native/scala-native/pull/3325/commits/044a1b800eb78ed887bef977fefbf80e7f245ab6)? In jsr166, `VarHandle` is used to achieve atomic operation([source](https://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/jsr166/src/main/java/util/concurrent/ConcurrentSkipListMap.java?revision=1.186&view=markup#l3371)), but if I understand correctly, `VarHandle`...
Thanks for the detailed explanation! Ok, then I can proceed the porting the code related to varHandle. > `LongAdder` is not yet ported Oops, I missed that. I'll port `LongAdder`...
Hi, I'm interested in getting cats-effect native runtime to be able to use multithreading. Is there anything I can help with? Regarding the libraries mentioned by @armanbilge [here](https://github.com/scala-native/scala-native/issues/3165#issuecomment-1431987525), which ones...
Sorry if I missed something in your situation, but if you just want to track the number of park of workers, you may be able to use some metrics around...
Thanks for clarifying the context! Yeah, deciding on the right api seems difficult, but I believe we should eventually reach.
> I could fixed the problem by copying [this code](https://github.com/tokio-rs/tokio/blob/master/tokio/src/io/util/copy.rs#L134-L150) [here, just before the loop](https://github.com/tokio-rs/tokio/blob/master/tokio/src/io/util/copy.rs#L98). This could be a fix, but I think that ideally it should be implemented in...
> Overall performance seemed to improve a bit with the new read condition I think this change could make the benchmark worse in cases where the `poll_flush` takes a long...
My question here is, in `AsyncWrite`, should `poll_write` not be executed while `poll_flush` is pending? If so, I think this change is acceptable even if it will worsen performance, because...
I created a simple C program and experimented it, and it seems possible to read and write sockets using fixed_buffer apis such as `io_uring_prep_write_fixed` and `io_uring_prep_read_fixed`. If my understanding is...