Many people here seem impressed about speed/performance. I have been using all sorts of terminals / emulators over the past 20 years and it never occurred to me a terminal can be slow. When I type a command, I just get the result instantaneously, for any terminal. What are the use cases that can make a terminal be slow?
danhau|1 year ago
A commenter in this thread mentioned sifting through log / debug output… but why wouldn‘t you pipe it to a file instead?
mike31fr|1 year ago
1. Create a file with 1 million lines:
2. cat the file and see how much time it takes: RESULTS:- iterm2: 3.5s
- Default macOS terminal: 2.3s
- Ghostty: 1.8s
umvi|1 year ago
Rendering huge stdout/stderr can be a bottleneck. Try running a program that writes half a million lines of text to stdout without file redirects and a lot of terminal emulators will struggle to keep up.
itsn0tm3|1 year ago
mike31fr|1 year ago