react-autocomplete-input icon indicating copy to clipboard operation
react-autocomplete-input copied to clipboard

Better performance

Open yury-dymov opened this issue 7 years ago • 0 comments

The current implementation uses string comparison to match autocomplete options. We may dramatically improve performance, especially for a large set of options, by leveraging prefix tree algorithm.

(Un)fortunately, I have a very limited amount of options (up to 100) in my primary project, so I am not motivated to invest more time to improve things, however, I would be more than happy to get some help :)

yury-dymov avatar Feb 08 '18 07:02 yury-dymov