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
As of now, we parse headers and query parameters on every initialisation of Request object. A better approach could be doing that lazy by using some getters to not spent effort on parsing query params and headers if user don't need to read them. We'll also need to use getters for many other properties(host, ip, protocol etc) to not parse headers without really needing them.
The text was updated successfully, but these errors were encountered:
As of now, we parse headers and query parameters on every initialisation of Request object. A better approach could be doing that lazy by using some getters to not spent effort on parsing query params and headers if user don't need to read them. We'll also need to use getters for many other properties(
host
,ip
,protocol
etc) to not parse headers without really needing them.The text was updated successfully, but these errors were encountered: