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
When requesting a feed the feed may specify how often to fetch the feed. But it may also return Expires or ETag headers:
Expires
ETag
If-None-Match
And, always send a If-Modified-Since with the last fetch time.
If-Modified-Since
Ignore Cache-Control for now, it will probably be more hassle than it's worth.
Cache-Control
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When requesting a feed the feed may specify how often to fetch the feed. But it may also return
Expires
orETag
headers:Expires
header is returned, then if that date is further in the future than the next fetch time it should be used instead.ETag
header is returned send anIf-None-Match
header with the given value on the next fetch.And, always send a
If-Modified-Since
with the last fetch time.Ignore
Cache-Control
for now, it will probably be more hassle than it's worth.Tasks
If-Modified-Since
with the last fetch time.Expires
header is returned then set the next fetch time to the maximum of it or the usual value.ETag
header is returned send anIf-None-Match
header with the next fetch.The text was updated successfully, but these errors were encountered: