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
`env_name` has to transform given strings into the `HTTP_` type headers
that are put in the Rack env. This involves at least one String
allocation and a few additional transformations performed on the string.
This commit avoids the extra allocations/transformations by precomputing
some request header strings so that `env_name` can be avoided. The
places changed here show up in a basic controller request, but there may
be other places that could be changed as well.
0 commit comments