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
{{ message }}
This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
If RDS provider supports if-modified-since, it will add resources to response only if they have changed since the provided timestamp. Response will also include the last-modified timestamp so that client can verify that server actually supports the if-modified-since option.
Idea is that client should not need to refresh its cache, or server should not need to resend the same set of resources, if nothing has changed.
We'll use HTTP-like if-modified-since (in request) and last-modified (in response) fields to control cache behavior.
Ref: #641
PiperOrigin-RevId: 387679666
* Implement caching in RDS protocol.
Idea is that client should not need to refresh its cache, or server should not need to resend the same set of resources, if nothing has changed.
We'll use HTTP-like if-modified-since (in request) and last-modified (in response) fields to control cache behavior.
Ref: #641
PiperOrigin-RevId: 387679666
If request contains if_modified_since field, use that field to decide whether to send all the resources in the response or not.
We always returns last_modified in the response. This timestamp corresponds to when lister's cache was refreshed from the actual file.
Ref: #641
& #634
PiperOrigin-RevId: 388502695
If request contains if_modified_since field, use that field to decide whether to send all the resources in the response or not.
We always returns last_modified in the response. This timestamp corresponds to when lister's cache was refreshed from the actual file.
Ref: #641 & #634
PiperOrigin-RevId: 388502695
Implement caching option in RDS protocol.
RDS client should be able to ask RDS server to return resources only if resources have changed since the provided timestamp.
If RDS provider supports
if-modified-since
, it will add resources to response only if they have changed since the provided timestamp. Response will also include thelast-modified
timestamp so that client can verify that server actually supports theif-modified-since
option.Ref: #634
The text was updated successfully, but these errors were encountered: