increase default buffer size

This commit is contained in:
Sky Johnson 2025-06-16 21:54:39 -05:00
parent 4ef162f9b5
commit df7b06507d

View File

@ -23,7 +23,7 @@ namespace sockeye {
class BufferPool {
public:
static constexpr size_t BUFFER_SIZE = 4096;
static constexpr size_t BUFFER_SIZE = 24576;
explicit BufferPool(size_t pool_size = 1024) {
buffers_.reserve(pool_size);