André Rouél
André Rouél
I fixed the Checkstyle error just now. I don't know what we do with the failing [tests/native-image-mp-1-macos job](https://github.com/helidon-io/helidon/actions/runs/11182713733/job/31539886256#logs). Could it be flappy?
I'm in the same situation and willing to help to get it going.
@piotrrzysko I agree with @zekronium , Option 2 would be preferred, but even Option 1 a good start. I wonder if we want to use a `new TypeToken() {}` to...
> benchmark, simdjson2 vs jackson, performance is more than 6 times higher. if parsing less of json fields, the performance improvement is particularly obvious. [reference](https://github.com/heykirby/simdjson-java/blob/feature_simdjson2/src/jmh/java/org/simdjson/Parse2VsJacksonBenchMark.java) > > simdjson: 95.936 ops...
@lemire thank you for your review and sharing this information here and on the panama mailing list. I hope the conversion is fruitful. Especially, [John Rose's answer](https://mail.openjdk.org/pipermail/panama-dev/2024-September/020624.html) let me hope...
@piotrrzysko I agree with you, a DOM-like API (`JsonValue`, `JsonIterator`, etc.) would be very helpful in use cases where only specific parts of the JSON are conditionally relevant, so that...
@jerolba Thank you for the quick response. I wouldn't make it more complicated and suggest to limit the scope of this feature to the write side with an annotation. I...
It seems to me that Ducklake is not merging the many small files in a chunk based approach (partitioning). I would expect that Ducklake is not fetching more data it...
I'm migrating the code in my company from Java 8 to at least Java 21, so if there's one thing that bothers me, it's that we're sticking with Java 11...
Here is a simple example that let Checkstyle fail. ```java class Jep513 { Jep513(int number) { if (number > 0) throw new IllegalArgumentException("number must be positive"); super(); } } ```...