microsoft/Terminal
Ver no GitHub[Performance] Replace std::vector with more lightweight structure in `RenderData::GetPatternId`
Open
#10.564 aberto em 6 de jul. de 2021
Area-PerformanceArea-RenderingHelp WantedIssue-TaskProduct-Meta
Métricas do repositório
- Stars
- (35.764 stars)
- Métricas de merge de PR
- (Mesclagem média 27d 19h) (24 fundiu PRs em 30d)
Description
This is about the scrolling test in #10563. A simplified repro would be:
time bash -c 'yes | head -n1000000'
which takes 7-8s with windows terminal and 300ms with gnome terminal.
Test case provided by @lhecker.
These lines show up in the hot paths of the trace of OpenConsole:
https://github.com/microsoft/terminal/blob/main/src/renderer/base/renderer.cpp#L788

It appears that simply constructing empty std::vector (empty because this is in conhost/OpenConsole) is quite expensive.
CC @PankajBhojwani