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

Trx parsing performance #1925

Merged
merged 3 commits into from
Sep 11, 2023
Merged

Commits on Sep 10, 2023

  1. Configuration menu
    Copy the full SHA
    3d9230e View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Improve trx parsing performance dramatically.

    Xpath's select has known performance issues on large documents.
    Using relative selectors to reduce the scope of attribute queries
    dramatically improves performance and stability with scale
    farlee2121 committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    dc255cd View commit details
    Browse the repository at this point in the history
  2. Remove redundant trx data model

    Relative parsing required data models more aligned with the Trx file structure.
    This made the old Trx data models an unnecessary layer of mapping.
    So, this removes them and maps more directly from the new file-aligned
    models directly to the explorer-aligned models
    farlee2121 committed Sep 11, 2023
    Configuration menu
    Copy the full SHA
    92d24d6 View commit details
    Browse the repository at this point in the history