We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9019a6e commit 8f02ef0Copy full SHA for 8f02ef0
1 file changed
src/Utilities.h
@@ -126,7 +126,7 @@ class NativeString {
126
bool invalid = false;
127
128
// Static thread-local state shared by all NativeString instances on this thread
129
- inline static thread_local std::vector<char> pool = std::vector<char>(8 * 1024 * 1024);
+ inline static thread_local std::vector<char> pool = std::vector<char>(128 * 1024);
130
inline static thread_local size_t pool_offset = 0;
131
inline static thread_local int ref_count = 0;
132
0 commit comments