Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
- name: Set up JDK 25
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
java-version: '25'
cache: 'gradle'
- name: Build with Gradle
run: chmod +x gradlew && ./gradlew assemble
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amazoncorretto:17-al2-jdk
FROM amazoncorretto:25-al2023-jdk@sha256:3371b8e140b9d38a267c8ee129d154049a78cd8af79fc68b7538d468466fcdd5

# Create a user
RUN yum update -y && \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Not evaluated are: RAM utilization, compression, payloads > 1 MB.

## Results

The benchmarks are written with [JMH](http://openjdk.java.net/projects/code-tools/jmh/) and for Java 17.
The benchmarks are written with [JMH](http://openjdk.java.net/projects/code-tools/jmh/) and for Java 25.

The results here-below were computed on February the 28th, 2026 with the following libraries and versions:

Expand Down Expand Up @@ -138,7 +138,7 @@ JMH info:

Prerequisites:

* JDK 17; and JAVA_HOME set.
* JDK 25; and JAVA_HOME set.
* make

By default, running `./run ser` (`./run deser` respectively) will run
Expand Down Expand Up @@ -177,7 +177,7 @@ Build and run:

Prerequisites:

* JDK 17; and JAVA_HOME set.
* JDK 25; and JAVA_HOME set.
* make
* [packer](https://www.packer.io/)
* [awscli](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) and configured
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ application {

java {
toolchain {
sourceCompatibility = 17
targetCompatibility = 17
sourceCompatibility = 25
targetCompatibility = 25
}
}

Expand Down
Loading