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

bump gc threshold #3908

Merged
merged 4 commits into from
Jul 9, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
cmoments
  • Loading branch information
jasonwilliams committed Jul 9, 2024
commit ba43edbdc8c2126775f27485de6d514cae82ad27
2 changes: 1 addition & 1 deletion core/gc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ struct GcConfig {
impl Default for GcConfig {
fn default() -> Self {
Self {
// Start at 1MB, the nursary for V8 is ~1-8MB and SM can be up to 16MB, so we have room to increase if needed.
// Start at 1MB, the nursary size for V8 is ~1-8MB and SM can be up to 16MB
threshold: 1_000_000,
jasonwilliams marked this conversation as resolved.
Show resolved Hide resolved
used_space_percentage: 70,
}
Expand Down
Loading