-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Performance improvement: synchronize to java.util.concurrent.locks sw…
…itch to improve performance with VirtualThreads (#2116) (#2118) This change improves EclipseLink performance with higher versions of the JDK (21 and above). It's about replacement of synchronized keyword and wait(), notify() methods by objects from java.util.concurrent.locks.* package. Additionally there are some new performance tests to verify it. (cherry picked from commit 1f0cf75) Signed-off-by: Radek Felcman <radek.felcman@oracle.com>
- Loading branch information
Showing
26 changed files
with
1,060 additions
and
249 deletions.
There are no files selected for viewing
363 changes: 213 additions & 150 deletions
363
...stence.core/src/main/java/org/eclipse/persistence/internal/helper/ConcurrencyManager.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
|
@@ -12,5 +12,4 @@ | |
|
||
warmup.iterations=20 | ||
run.iterations=20 | ||
jmh.resultFile=jmh-result.csv | ||
jmh.resultFormat=csv |
Oops, something went wrong.