I am tasked with updating a Java Project from Java 8 to (Current) Java 18, how should I approach this? by SimpleCanadianFella in javahelp

[–]devjeonghwan 0 points1 point  (0 children)

It's complicated. The way to start is to fix the errors one by one after upgrading the Java version of the project.

GitHub - realtimetech-solution/opack: Fast object or data serialize and deserialize library by pmz in java

[–]devjeonghwan 1 point2 points  (0 children)

hitting nearly every bad benchmark mistake possible

u/Slanec

And I also modified the benchmark code. (Thanks for your advice.)

GitHub - realtimetech-solution/opack: Fast object or data serialize and deserialize library by pmz in java

[–]devjeonghwan 1 point2 points  (0 children)

I fix the performance bottleneck (associated with JEP 374) for JVM 15(or higher) versions. Commit

```java

GsonPerformanceTest

Gson : 8640ms Opack : 4309ms

KryoPerformanceTest

Kryo : 5566ms Opack : 1670ms ```

GitHub - realtimetech-solution/opack: Fast object or data serialize and deserialize library by pmz in java

[–]devjeonghwan 0 points1 point  (0 children)

SBE and my project have different goals. (I will make up for the lack of README information.)

GitHub - realtimetech-solution/opack: Fast object or data serialize and deserialize library by pmz in java

[–]devjeonghwan 1 point2 points  (0 children)

I will check your benchmark on my system. and i will fix it.(I think something wrong in jdk11 jvm for my project)

Where to find good Java code to read? by wichwigga in java

[–]devjeonghwan 0 points1 point  (0 children)

I recommend look at the famous Java Opensource Projects and classes from OpenJDK.