Revert "experiment with reducing retained arena size"

This reverts commit 2f6b4c04da3e4659a3ebe8bcb9195f4625feaa16.
This commit is contained in:
Karl Seguin
2025-06-01 18:56:02 +08:00
parent 021fc8fb59
commit 9e834e0db5

View File

@@ -89,7 +89,7 @@ pub const Session = struct {
try parser.init();
const page_arena = &self.browser.page_arena;
_ = page_arena.reset(.{ .retain_with_limit = 128 * 1024 });
_ = page_arena.reset(.{ .retain_with_limit = 1 * 1024 * 1024 });
self.page = @as(Page, undefined);
const page = &self.page.?;