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
Parsing hex values is currently slow. This is used when determining the length of a body chunk under the chunked transfer encoding. Avoiding the allocation of the string would be a good first start, but in addition, relying on exceptions to detect failure should probably be avoided as well.
The text was updated successfully, but these errors were encountered:
Lupus
pushed a commit
to Lupus/httpaf
that referenced
this issue
Dec 8, 2020
Parsing hex values is currently slow. This is used when determining the length of a body chunk under the
chunked
transfer encoding. Avoiding the allocation of the string would be a good first start, but in addition, relying on exceptions to detect failure should probably be avoided as well.The text was updated successfully, but these errors were encountered: