We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While looking at the block code below to figure out if WebP images would be cached correctly:
carapaceproxy/carapace-server/src/main/java/org/carapaceproxy/server/cache/ContentsCache.java
Lines 188 to 200 in fe1cfdf
we figured out that caching strategy implemented by isChached methods is a little naïve. Taking a look the the actual code:
isChached
Lines 122 to 131 in fe1cfdf
Lines 155 to 172 in fe1cfdf
it is especially evident that we don't actually support all the Cache-Control values.
Cache-Control
max-age
max-stale
min-fresh
s-maxage
no-cache
no-store
no-transform
only-if-cached
must-revalidate
proxy-revalidate
must-understand
private
public
immutable
stale-while-revalidate
stale-if-error
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While looking at the block code below to figure out if WebP images would be cached correctly:
carapaceproxy/carapace-server/src/main/java/org/carapaceproxy/server/cache/ContentsCache.java
Lines 188 to 200 in fe1cfdf
we figured out that caching strategy implemented by
isChached
methods is a little naïve. Taking a look the the actual code:carapaceproxy/carapace-server/src/main/java/org/carapaceproxy/server/cache/ContentsCache.java
Lines 122 to 131 in fe1cfdf
carapaceproxy/carapace-server/src/main/java/org/carapaceproxy/server/cache/ContentsCache.java
Lines 155 to 172 in fe1cfdf
it is especially evident that we don't actually support all the
Cache-Control
values.max-age
max-age
max-stale
min-fresh
s-maxage
no-cache
no-cache
no-store
no-store
no-transform
no-transform
only-if-cached
must-revalidate
proxy-revalidate
must-understand
private
public
immutable
stale-while-revalidate
stale-if-error
stale-if-error
The text was updated successfully, but these errors were encountered: