redis
redis copied to clipboard
Reduce latency of write operations
As described in this comment there is an easy way to reduce latency of write operations
We can avoid copying payloads here when the connection has only one ongoing
async_exec. The multiplexerget_write_buffer()function could then return astring_viewpointing directly to the request internal buffer instead of a copy of it, which would then be used here.