You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.outputBuffer is frequently getting expanded by adding a few bytes at the end of it. Every time it happens the buffer gets re-allocated, which is very costly. Need to experiment whether those small increases can be grouped together into something bigger before actually appending it to the outputBuffe in one go
The text was updated successfully, but these errors were encountered:
this.outputBuffer
is frequently getting expanded by adding a few bytes at the end of it. Every time it happens the buffer gets re-allocated, which is very costly. Need to experiment whether those small increases can be grouped together into something bigger before actually appending it to the outputBuffe in one goThe text was updated successfully, but these errors were encountered: