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
Motivation:
`Base64::encode` allocates a StringBuilder on every call.
Modifications:
* Extract `StringBuilderPool` from `SringUtils`
* Use such pool for `Base64::encode`
Result:
Less allocations
Motivation:
`Base64::encode` allocates a StringBuilder on every call.
Modifications:
* Extract `StringBuilderPool` from `SringUtils`
* Use such pool for `Base64::encode`
Result:
Less allocations
Base64::encode
allocate a new StringBuilder on every call, it could be pooled.The text was updated successfully, but these errors were encountered: