-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f9b9f4
commit 8882e0b
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
type: improvement | ||
improvement: | ||
description: |- | ||
Enable String Deduplication on JDK 17+ | ||
G1 and Shenandoah GC support string deduplication as of JDK 17 | ||
* https://openjdk.java.net/jeps/192 | ||
* https://bugs.openjdk.org/browse/JDK-8264718 | ||
Only enable on JDK 17+ due to fix | ||
https://bugs.openjdk.org/browse/JDK-8277981 | ||
JDK 18+ enable string deduplication for SerialGC, ParallalGC, and ZGC. | ||
https://malloc.se/blog/zgc-jdk18 | ||
links: | ||
- https://github.com/palantir/sls-packaging/pull/1380 | ||
- https://openjdk.java.net/jeps/192 | ||
- https://bugs.openjdk.org/browse/JDK-8264718 | ||
- https://malloc.se/blog/zgc-jdk18 |