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

Faster query string decoder #13473

Open
wants to merge 2 commits into
base: 4.1
Choose a base branch
from

Commits on Sep 19, 2023

  1. Faster query string decoder

    Motivation:
    
    decodeParams is not accounting for common decoding scenarios
    making it highly unpredictable.
    
    Modifications:
    
    Arrange control flow to isolated predictable from unpredictable
    checks to improve CPU usage (stalled frontend cycles)
    
    Result:
    
    Faster query decoding
    franz1981 committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    4515b60 View commit details
    Browse the repository at this point in the history
  2. Address Norman's comment

    franz1981 committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    329d1d5 View commit details
    Browse the repository at this point in the history