You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket is intended to follow the number of copies of the data sent from the wrapper before being sent on the wrapper. Some of the steps here can potentially be optimized away in order to improve performance.
In the parser, the full command is copied into a buffer before being passed to the tcp stream. This is probably unnecessary, since the parser doesn't do any parsing on inputs, only on outputs.
The text was updated successfully, but these errors were encountered:
This ticket is intended to follow the number of copies of the data sent from the wrapper before being sent on the wrapper. Some of the steps here can potentially be optimized away in order to improve performance.
Cmd
get_packed_command
. This can be removed by using a single-copy structure, as proposed here..command()
is called on routables, and it allocates vec and copies the first part of the command.The text was updated successfully, but these errors were encountered: