1[description]
2Configures the ByteBufferPool used by ServerConnectors.
3
4[xml]
5etc/jetty-bytebufferpool.xml
6
7[ini-template]
8### Server ByteBufferPool Configuration
9## Minimum capacity to pool ByteBuffers
10#jetty.byteBufferPool.minCapacity=0
11
12## Maximum capacity to pool ByteBuffers
13#jetty.byteBufferPool.maxCapacity=65536
14
15## Capacity factor
16#jetty.byteBufferPool.factor=1024
17
18## Maximum queue length for each bucket (-1 for unbounded)
19#jetty.byteBufferPool.maxQueueLength=-1
20
21## Maximum heap memory retainable by the pool (-1 for unlimited)
22#jetty.byteBufferPool.maxHeapMemory=-1
23
24## Maximum direct memory retainable by the pool (-1 for unlimited)
25#jetty.byteBufferPool.maxDirectMemory=-1
26