| ▲ | wild_egg 5 hours ago | |
It's been a while but why is uring not helpful for larger buffers? I'd think the zero-copy I/O capabilities would make it more helpful for larger payloads, not less | ||
| ▲ | Veserv 4 hours ago | parent [-] | |
uring supports zero-copy, but is not a copy-reduction mechanism; it is a syscall-reduction mechanism. Large buffers mean less syscalls to start with, so less benefit. | ||