mirror of
https://github.com/junegunn/fzf
synced 2024-11-14 18:12:53 +00:00
2fe1e28220
I profiled fzf and it turned out that it was spending significant amount of time repeatedly converting character arrays into Unicode codepoints. This commit greatly improves search performance after the initial scan by memoizing the converted results. This commit also addresses the problem of unbounded memory usage of fzf. fzf is a short-lived process that usually processes small input, so it was implemented to cache the intermediate results very aggressively with no notion of cache expiration/eviction. I still think a proper implementation of caching scheme is definitely an overkill. Instead this commit introduces limits to the maximum size (or minimum selectivity) of the intermediate results that can be cached. |
||
---|---|---|
.. | ||
atomicbool_test.go | ||
atomicbool.go | ||
eventbox_test.go | ||
eventbox.go | ||
util_test.go | ||
util.go |