You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we use MempoolHolder as default allocator - it makes all
buffers use the same MempoolInstance. This buffer cannot be used in
Multi-Threaded scenarios, so let's simply use `MempoolInstance`
instead - now each connection will use its own allocator. To reduce
memory footprint of each connection, let's set default parameter
`M = slab_size / block_size` to 16 to use 256KB slabs by default.
Along the way, move a brace to the same line with `Buffer` class name to
make it conform to our clang format.
Part of #110
0 commit comments