-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
racket-repl-output: buffer/"batch" stdout/stderr
Performance can be bad at either of two extremes: Very many outputs, or very large outputs. This can arise with stdout or stderr outputs: e.g. (for ([_ huge-number]) (print something)) or (print huge-thing). Use a manager thread to mediate and buffer/batch. (Note that very long lines can still be slow in any Emacs buffer, but (a) that can be mitigated by so-long and IIUC Emacs 29.1, and (b) anyway that's not a problem we were contributing.)
- Loading branch information
1 parent
821392c
commit e202ec6
Showing
3 changed files
with
99 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters