You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A time out of 5 seconds is added to requests to the backend. An error will be displayed instead of frozen at loading.
The performance of similarity sorting is improved significantly (by at least 10x).
If the fuzzy search yields no result, a text warning "Input too short or no results" will be shown to distinguish it from the starting page.
Internal Changes
Some of the internal APIs are simplified.
Some unit tests are rewritten.
Searcher and ScheduleGenerator/Evaluator are ported to C++ to improve their performance and reduce overall code size. The way they were already written makes the porting very easy. Measured speed improvement is about 3x.
Fuzzy search is moved from the worker thread to the main thread because it is much faster now and will not block the main thread long enough. This reduced the total code size by about 30kB. Relevant support code for WebWorker is removed.