Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct a minor error in native-reference.adoc #32655

Merged
merged 1 commit into from
Apr 15, 2023
Merged
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
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/native-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This means that GraalVM’s adaptive GC policy tries to aggressively trigger GCs
Up to version 2.13, Quarkus used the “space/time” GC collection policy by default,
but starting with version 2.14, it switched to using the “adaptive” policy instead.
The reason why Quarkus initially chose to use "space/time" is because at that time it had considerable performance improvements over "adaptive".
Recent performance experiments, however, indicate that the "space/time" policy can result in worse out-of-the-box experience compared to the "space/time" policy,
Recent performance experiments, however, indicate that the "space/time" policy can result in worse out-of-the-box experience compared to the "adaptive" policy,
while at the same time the benefits it used to offer have diminished considerably after improvements made to the "adaptive" policy.
As a result, the "adaptive" policy appears to be the best option for most, if not all, Quarkus applications.
Full details on this switch can be read in link:https://github.com/quarkusio/quarkus/issues/28267[this issue].
Expand Down