Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve speed of hypdiff for large text #5

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Conversation

phorsuedzie
Copy link

@phorsuedzie phorsuedzie commented Jun 3, 2021

If large text is diffed, Diff::LCS receives a lot of "single whitespace" sequence tokens, which have a heavy impact on execution time. The effect is not linear with the number of whitespaces, but more like O(n^2).

The solution is to hide (most) whitespace sequence items from Diff::LCS. A whitespace TextFromNode is now "merged" into its successor TextFromNode if both belong to the same XML Text Node (i.e. originate from the same split).

This helps Diff::LCS in two ways:

  • the number of sequence tokens is reduced
  • the number of equal sequence tokens is massively reduced
    • Note: some less(?) critical "token hotspots" might still be present, e.g. < and alike

Note that specs are kept happy by collapsing adjacent whitespaces nodes (even across text nodes) first, and only afterwards merge a whitespace token into its successor.

- `Hash` knows how to initialize values of missing keys.
- `NodeMap` returns the map and is not (anymore) called with a block.
The loop's condition is sufficient. The artifact is from a spike which
tried to identify a "common tail" of insertions and deletions.
@phorsuedzie
Copy link
Author

phorsuedzie commented Nov 4, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant