...
In particular, delayed ACK, which is a basic property of TCP, helps to optimize transmission by waiting for a certain amount of time when sending an ACK response from the receiving end, and then collecting and processing it at a time. However, this property has a bad effect on latency and should be disabled. The following command disables this option on the network interface, which can be controlled on a per-resource basis in bsr.
|
This command is for Windows only. It sets TCP option values in the Windows registry and applies the contents to the network interface. You can check the registry contents in the path below to see if this option has been applied properly.
...
TcpAckFrequency(REG_DWORD) = 1
accelbuf-size
bsr implements double buffering in the phase between local I/O and transmission buffer to quickly complete local I/O, and this is called acceleration buffer.
The acceleration buffer was implemented to optimize the delay of local I/O, and especially optimizes the delay for I/O in small units of 4KB or less.
Code Block |
---|
resource <resource> {
disk {
accelbuf-size 10M;
...
}
...
} |