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

Reduce scheduler serialization overhead #14249

Merged
merged 1 commit into from
Nov 16, 2018
Merged

Commits on Nov 16, 2018

  1. Reduce scheduler serialization overhead

    In the process of switching to MessageChannel, it seems the postMessage call was modified to pass `"*"` (originally the target origin value from `window.postMessage`). This actually ends up triggering serialization, whereas passing `undefined` bypasses.
    
    To save some investigation, passing a Number like `0` still incurs serialization overhead - `undefined` has special behavior.
    developit authored Nov 16, 2018
    Configuration menu
    Copy the full SHA
    6434397 View commit details
    Browse the repository at this point in the history