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
In StorageSharedKeyCredential.generateAuthorizationHeader, there is a call to String.format that appends an accountName and signature into the returned string. This takes between 1.4-4.2% of CPU time in some benchmarks, and is potentially redundant - could it be replaced with something such as return "SharedKey " + accountName + ":" + signature, to avoid the need to perform the slower String.format operation?
The text was updated successfully, but these errors were encountered:
In
StorageSharedKeyCredential.generateAuthorizationHeader
, there is a call toString.format
that appends an accountName and signature into the returned string. This takes between 1.4-4.2% of CPU time in some benchmarks, and is potentially redundant - could it be replaced with something such asreturn "SharedKey " + accountName + ":" + signature
, to avoid the need to perform the slowerString.format
operation?The text was updated successfully, but these errors were encountered: