mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-24 16:35:03 +00:00
There are cases, for example in WebSocket, where we want to allocate small buffers to write frame headers and then do a gathered write. ArrayByteBufferPool had a minimum size of 64 bytes, which was too big and always led to allocation rather than pooling, leading to performance slowdowns. Defaults are now minSize=0, increment=1024.