bdeneuter

Results 6 comments of bdeneuter

@lfbayer Virtual threads use a small number of carrier threads (OS Threads) to execute. Normally this will be the same amount as the number of CPUs. If the virtual thread...

> lock() call must be in try {} block I don't think it must be in the try block. This is documented in the ReentrantClass: https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/concurrent/locks/ReentrantLock.html ``` class X {...

Hi, my pull request was not trying to solve philosophical questions or determine what is the best way to use HikariCP with virtual threads. The goal is to make HikariCP...

> Also, I'm still not satisfied with the answer related to locks and synchronize blocks being semantically the same. If the JVM doesn't support something with synchronize that it does...

Each time the code enters a synchronized block the underlying carrier thread gets pinned. If this is a bad thing depends on what happens in the synchronized block. If the...

@osheroff I created also a PR with a fix: https://github.com/osheroff/mysql-binlog-connector-java/pull/84 My fix verifies that there is no `:`. I think MySQL Gtid has always a `:`. https://dev.mysql.com/doc/refman/8.0/en/replication-gtids-concepts.html