6 ms·
Without the submission batching you lose your system call reduction and that is far and away the biggest benefit.
by benlwalker 3y ago
Without the submission batching you lose your system call reduction and that is far and away the biggest benefit.
- dontlaugh 3y agoThe way I see it, a bigger benefit is avoiding readiness-triggered IO. That can add a variable number of syscalls, wakes up threads, etc. Of course, batching is also great.