-
-
Notifications
You must be signed in to change notification settings - Fork 801
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
investigate large PDU size in multiplexer connections #867
Comments
Potentially this can be also disabled when using ssh if the ssh layer is doing compression? |
FWIW, I think the visible use of compression in the profile is a symptom rather than a cause of issues. There appears to be a fairly large chunk of data that is |
Mosh uses the following diff algorithm to minimize data exchange between server and client: Probably this is the way to go. |
Terminal now maintains a sequence number that increments for each Action that is applied to it. Changes to lines are tagged with the current sequence number. This makes it a bit easier to reason about when an individual line has changed relative to some point in "time"; the consumer of the terminal can sample the current sequence number and then can later determine which lines have changed since that point in time. refs: #867
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Describe the bug
I saw that my local mux server is currently spending the majority of time doing zstd compression.
This seems wasteful if the result is transferred over a local unix socket.
The text was updated successfully, but these errors were encountered: