101010.pl is one of the many independent Mastodon servers you can use to participate in the fediverse.
101010.pl czyli najstarszy polski serwer Mastodon. Posiadamy wpisy do 2048 znaków.

Server stats:

517
active users

#r2dbc

0 posts0 participants0 posts today

If you are using #R2DBC, I strongly recommend upgrading to Spring Boot 3.3.5 which contains an amazing optimization crafted by Mark Paluch and Dariusz Jędrzejczyk which provides a huge performance boost (higher throughput, lower latency) under high concurency. spring.io/blog/2024/10/24/spri

Spring Boot 3.3.5 available nowSpring Boot 3.3.5 available nowLevel up your Java code and explore what Spring can do for you.

I struggle to find the benefits of #Spring #R2DBC. It's a full rewrite of #JDBC API using non-blocking I/O. However, typical application shouldn't open more than a handful of DB connections. So, just a few threads blocked on I/O (plus some threads queued up) shouldn't be an issue. Unless you want to be purely reactive or you are connecting to massively scalable database. But in that case, virtual threads come in handy. So what's the point? #Java #reactive

Spring Data #R2DBC doesn't make it easy to query across multiple tables. With the @Query annotation, I couldn't map the results to the entity. I had to resort to the low-level DatabaseClient. I would be interested in the "correct way" with pointers to the documentation.