-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
YieldMo optimization opportunity. #5098
Labels
Comments
Thank you for surfacing this. We will review internally and evaluate possible solutions. |
@snapwich @DecayConstant I have alerted my team to this and we are adding it to our roadmap to address. Thank you! |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
arconamagi
pushed a commit
to yieldmo/Prebid.js
that referenced
this issue
Jul 20, 2020
…& optimize prebid#5098, minor refactoring
9 tasks
10 tasks
bmwcmw
pushed a commit
that referenced
this issue
Aug 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was investigating a Chrome performance profile, looking for bottlenecks in my own code, but I noticed this in a Prebid
callBids
call. YieldMo's ownbuildRequests
is much slower than any other bid adapter. It's caused by the DOM manipulations that occur in theisSuperSandboxedIframe()
function.I don't know what that's for and if it's really necessary, but could you reorder the checks that happen in
getEnvironment()
so that the most common results are checked for first so you avoid the additional unnecessary checks for the less common environments? Or is the order of those checks important?Prebid.js/modules/yieldmoBidAdapter.js
Lines 222 to 244 in 9eec929
The text was updated successfully, but these errors were encountered: