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
It can take too much memory (and instantiation time) to create the array if the search string won't be that long
If the search string is very long (over 400k characters, which is an unlikely use-case, but still) we would miss any search value that comes after the 400k chars
We want to investigate how this can be improved.
The text was updated successfully, but these errors were encountered:
This is a follow up from this PR:
which was created for this issue ticket originally:
This is a follow up task.
Currently in
FastSearch
we create an array buffer which represents large string of all search values. We hard coded a length of 400k:App/src/libs/FastSearch.ts
Lines 28 to 32 in 13f41cb
This has a few drawbacks:
We want to investigate how this can be improved.
The text was updated successfully, but these errors were encountered: