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
Coaster needs a decorator that supports caching with the ETag header. A regular Flask-Cache cache decorator will save server processing time, but not bandwidth consumption for the client.
This example is a good starting point. It needs a hashing algorithm for the ETag value (Blake2b is suitable), a cache-busting mechanism to allow longer timeout periods, and support for If-None-Match and If-Match in POST requests.
The text was updated successfully, but these errors were encountered:
Coaster needs a decorator that supports caching with the ETag header. A regular Flask-Cache cache decorator will save server processing time, but not bandwidth consumption for the client.
This example is a good starting point. It needs a hashing algorithm for the ETag value (Blake2b is suitable), a cache-busting mechanism to allow longer timeout periods, and support for
If-None-Match
andIf-Match
in POST requests.The text was updated successfully, but these errors were encountered: