V8Runtime heap size limit tuning #292
Unanswered
Lookout-ent
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Yes, almost all V8 options are supported. Please check this file out. setMaxHeapSize(...);
setMaxOldSpaceSize(...);
setCustomFlags("--max-semi-space-size=... --min-semi-space-size=..."); Please be careful. The V8 flags must be set during application initialization. Once the first V8 runtime is created, the V8 flags are sealed and further modification to the V8 flags will no longer take effect. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i was wondering if there is any to set the V8Runtime heapSizeLimit ?
Beta Was this translation helpful? Give feedback.
All reactions