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

Very high CPU load on very dynamic pages #3

Open
rkfg opened this issue Dec 12, 2015 · 0 comments
Open

Very high CPU load on very dynamic pages #3

rkfg opened this issue Dec 12, 2015 · 0 comments
Assignees

Comments

@rkfg
Copy link

rkfg commented Dec 12, 2015

I'm experiencing a noticeable slowdown of the NXT web UI when PwdHash is enabled. Profiler shows that the culprit is discoverPasswordFields function which is consuming CPU. I've found a simple workaround for this:

    var searchInProgress = null;
    var discoverPasswordFields = function(event) {
        if (searchInProgress) {
           clearTimeout(searchInProgress);
        }
        searchInProgress = setTimeout(function() {
           searchInProgress = null;
           if (Self.searchInputs(event)) {
               chrome.extension.sendRequest({controller: 'Background_HTML', action: 'showPwdHashIcon'});
        }}, 1000);
    };

Something like this. It's not quite necessary to find password fields ASAP, one second is enough to prevent cascaded launches because of the DOM updates so it relieves some stress. But it's better to make this search faster of course.

@infocris infocris self-assigned this Sep 18, 2016
CyBot pushed a commit to CyBot/chrome-pwdhash-poc that referenced this issue Aug 28, 2017
FireBurn pushed a commit to FireBurn/pwdhash that referenced this issue Feb 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants