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
The current CookieParser::before_handle implementation creates several std::string objects during the parsing of the Cookie header value. This can be optimized by using std::string_view to slice the header string directly.
The current
CookieParser::before_handle
implementation creates severalstd::string
objects during the parsing of theCookie
header value. This can be optimized by usingstd::string_view
to slice the header string directly.Addresses the todo at:
Crow/include/crow/middlewares/cookie_parser.h
Line 234 in e8b1251
The text was updated successfully, but these errors were encountered: