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
The LineIndex object, responsible for tracking the absolute offsets of lines, is currently backed by an ordered vector of offsets.
This implementation becomes inefficient with large files (hundreds of thousands of lines).
To improve performance, the implementation should be updated by replacing the single vector with a linked list of vectors, or possibly even a B+Tree map.
The text was updated successfully, but these errors were encountered:
The LineIndex object, responsible for tracking the absolute offsets of lines, is currently backed by an ordered vector of offsets.
This implementation becomes inefficient with large files (hundreds of thousands of lines).
To improve performance, the implementation should be updated by replacing the single vector with a linked list of vectors, or possibly even a B+Tree map.
The text was updated successfully, but these errors were encountered: