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
parse() uses crate regex to process the HTTP Link: header. As part of this, a regular expression is re-compiled every time parse() is called. This should be moved to a lazy_static to avoid the processing penalty every time parse() is called.
The text was updated successfully, but these errors were encountered:
parse() uses crate regex to process the HTTP
Link:
header. As part of this, a regular expression is re-compiled every time parse() is called. This should be moved to alazy_static
to avoid the processing penalty every time parse() is called.The text was updated successfully, but these errors were encountered: