diff options
author | 2022-07-03 23:17:27 -0700 | |
---|---|---|
committer | 2022-07-03 23:17:27 -0700 | |
commit | 53a8ab57154d370ac8cdf93a50b325bb4d67e2ab (patch) | |
tree | e4573c68df920b12ea00be15cc82e96defb2a404 | |
parent | 544ab558dcee4cb23548333300d198d3b023c5b6 (diff) | |
download | bun-53a8ab57154d370ac8cdf93a50b325bb4d67e2ab.tar.gz bun-53a8ab57154d370ac8cdf93a50b325bb4d67e2ab.tar.zst bun-53a8ab57154d370ac8cdf93a50b325bb4d67e2ab.zip |
Re-enable buffer pooling
-rw-r--r-- | src/feature_flags.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 6fe6da892..dc77a47e6 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -95,4 +95,4 @@ pub const simd = true; // This change didn't seem to make a meaningful difference in microbenchmarks pub const latin1_is_now_ascii = false; -pub const http_buffer_pooling = false; +pub const http_buffer_pooling = true; |