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
There is code to use HTTP Conditional Requests, specifically ETag, in the underlying libraries. However, the current code has to run exactly the same logic to verify the request as it would to generate the response. All we're saving is bandwidth, no CPU.
By using IO::Handle streams on the Plack side of this module, we could also save some CPU.
At present, not all serializers support this, but they are likely to in the future.
The text was updated successfully, but these errors were encountered:
There is code to use HTTP Conditional Requests, specifically
ETag
, in the underlying libraries. However, the current code has to run exactly the same logic to verify the request as it would to generate the response. All we're saving is bandwidth, no CPU.By using IO::Handle streams on the Plack side of this module, we could also save some CPU.
At present, not all serializers support this, but they are likely to in the future.
The text was updated successfully, but these errors were encountered: