Josh Triplett
Josh Triplett
On Fri, Apr 17, 2020 at 01:12:55AM -0700, Thomas de Zeeuw wrote: > > If the calls are returning early, there may not be as much value in minimizing the...
On Tue, Apr 21, 2020 at 02:22:57AM -0700, Thomas de Zeeuw wrote: > > If you want to reuse the same buffers, it may also make sense to reuse the...
It seems like the biggest blocker for this is the open question about the API. The current API requires the caller to pass a `&mut`, so that `write_all_vectored` can modify...
@Thomasdezeeuw I'm not suggesting that we optimize for the 2-3 case; I'm suggesting that we don't need to optimize heavily for an already-less-optimized subcase (partial writes) of the 1024 case,...
@Thomasdezeeuw > If it's such a big problem maybe this needs a new type that wraps &mut [IoSlice] to show that ownership is passed to the function? The issue isn't...
:+1: for pushing forwards with this. Could we get a brief stabilization report on the current state of this and whether there's any other blocker to stabilization? (Please tag this...
@rfcbot merge
You might try botsin.space which is bot-friendly, or see if feedsin.space can make it work automatically via the feed. Or you could set it up on your own domain via...
@idubrov It wouldn't reduce the time to compile the map the first time, but in theory you could cache that map and reuse it as long as the data remains...