Navigation Menu

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

Improvements to query performance #3258

Merged
merged 2 commits into from May 9, 2019

Commits on May 9, 2019

  1. Create a cached template() function

    We were previously doing calls to Template() directly, sometimes in a
    loop. This caused the same template to be recompiled over and over. This
    commit introduces a function template() which caches the results, so
    that multiple calls with the same template string does not require
    recompilation.
    SimonTeixidor committed May 9, 2019
    Copy the full SHA
    c5075b2 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    7df4e23 View commit details
    Browse the repository at this point in the history