Struct http_cache_semantics::CachePolicy
source · pub struct CachePolicy { /* private fields */ }
Expand description
Identifies when responses can be reused from a cache, taking into account HTTP RFC 7234 rules for user agents and shared caches. It’s aware of many tricky details such as the Vary header, proxy revalidation, and authenticated responses.
Implementations§
source§impl CachePolicy
impl CachePolicy
sourcepub fn new<Req: RequestLike, Res: ResponseLike>(req: &Req, res: &Res) -> Self
pub fn new<Req: RequestLike, Res: ResponseLike>(req: &Req, res: &Res) -> Self
Cacheability of an HTTP response depends on how it was requested, so both request and response are required to create the policy.
sourcepub fn new_options<Req: RequestLike, Res: ResponseLike>(
req: &Req,
res: &Res,
response_time: SystemTime,
opts: CacheOptions
) -> Self
pub fn new_options<Req: RequestLike, Res: ResponseLike>( req: &Req, res: &Res, response_time: SystemTime, opts: CacheOptions ) -> Self
Caching with customized behavior. See CacheOptions
for details.
response_time
is a timestamp when the response has been received, usually SystemTime::now()
.
sourcepub fn is_storable(&self) -> bool
pub fn is_storable(&self) -> bool
Returns true
if the response can be stored in a cache. If it’s
false
then you MUST NOT store either the request or the response.
sourcepub fn before_request<Req: RequestLike>(
&self,
req: &Req,
now: SystemTime
) -> BeforeRequest
pub fn before_request<Req: RequestLike>( &self, req: &Req, now: SystemTime ) -> BeforeRequest
Returns whether the cached response is still fresh in the context of the new request.
If it returns Fresh
, then the given request matches the original
response this cache policy has been created with, and the response can
be reused without contacting the server.
If it returns Stale
, then the response may not be matching at all
(e.g. it’s for a different URL or method), or may require to be
refreshed first. Either way, the new request’s headers will have been
updated for sending it to the origin server.
sourcepub fn age(&self, now: SystemTime) -> Duration
pub fn age(&self, now: SystemTime) -> Duration
Tells how long the response has been sitting in cache(s).
Value of the Age
header, updated for the current time.
sourcepub fn time_to_live(&self, now: SystemTime) -> Duration
pub fn time_to_live(&self, now: SystemTime) -> Duration
Returns approximate time until the response becomes
stale (i.e. not fresh). This is the correct way of getting the current max-age
value.
After that time (when time_to_live() == Duration::ZERO
) the response might not be
usable without revalidation. However, there are exceptions, e.g. a
client can explicitly allow stale responses, so always check with
before_request()
.
If you’re storing responses in a cache/database, keep them approximately for
the time_to_live
duration plus some extra time to allow for revalidation
(an expired response is still useful).
sourcepub fn is_stale(&self, now: SystemTime) -> bool
pub fn is_stale(&self, now: SystemTime) -> bool
Stale responses shouldn’t be used without contacting the server (revalidation)
sourcepub fn after_response<Req: RequestLike, Res: ResponseLike>(
&self,
request: &Req,
response: &Res,
response_time: SystemTime
) -> AfterResponse
pub fn after_response<Req: RequestLike, Res: ResponseLike>( &self, request: &Req, response: &Res, response_time: SystemTime ) -> AfterResponse
Creates CachePolicy
with information combined from the previews response,
and the new revalidation response.
Returns {policy, modified}
where modified is a boolean indicating
whether the response body has been modified, and old cached body can’t be used.
Trait Implementations§
source§impl Clone for CachePolicy
impl Clone for CachePolicy
source§fn clone(&self) -> CachePolicy
fn clone(&self) -> CachePolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more