From 598bbf4833f04ed78bc47ce8d2182c76a5994c9c Mon Sep 17 00:00:00 2001 From: Joe Bowbeer Date: Tue, 12 Nov 2024 15:55:32 -0800 Subject: [PATCH] doc: correct max-semi-space-size statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Joe Bowbeer PR-URL: https://github.com/nodejs/node/pull/55812 Reviewed-By: Luigi Pinca Reviewed-By: Ulises Gascón --- doc/api/cli.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 2e2578e883e..7b132e70132 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -3526,8 +3526,8 @@ improvement depends on your workload (see [#42511][]). The default value depends on the memory limit. For example, on 64-bit systems with a memory limit of 512 MiB, the max size of a semi-space defaults to 1 MiB. -On 64-bit systems with a memory limit of 2 GiB, the max size of a semi-space -defaults to 16 MiB. +For memory limits up to and including 2GiB, the default max size of a +semi-space will be less than 16 MiB on 64-bit systems. To get the best configuration for your application, you should try different max-semi-space-size values when running benchmarks for your application.