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
Currently, the field-length norm is calculated for every value. Given the operation and the toFixed usage (for mantissa = 3), there are performance implications when the list size is large (> 1000 records).
We can reduce the index generation time by caching the norm value.
Describe the solution you'd like
typeNorm=(mantissa: number)=>{get(value: string): number// the field length normclear(): void// clears the internal cache}
The text was updated successfully, but these errors were encountered:
Description
Currently, the field-length norm is calculated for every value. Given the operation and the
toFixed
usage (for mantissa = 3), there are performance implications when the list size is large (> 1000 records).We can reduce the index generation time by caching the norm value.
Describe the solution you'd like
The text was updated successfully, but these errors were encountered: