We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found that parsing the wrong zip resulted in increased CPU usage, and I found a problem after debug:
Parse.prototype._flush = function (callback) { if (!this._streamEnd || !this._streamFinish) { return setImmediate(this._flush.bind(this, callback)); } this.emit('close'); return callback(); };
Here _streamEnd and _streamFinish variables has been meet the conditions, so constantly registered setImmediate to the event loop
_streamEnd
_streamFinish
setImmediate
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
use unzip.Extract, Cpu soars from 4% to 50% and does not recover.
No branches or pull requests
I found that parsing the wrong zip resulted in increased CPU usage, and I found a problem after debug:
Here
_streamEnd
and_streamFinish
variables has been meet the conditions, so constantly registeredsetImmediate
to the event loopThe text was updated successfully, but these errors were encountered: