pub struct HttpCache<T>where
T: CacheManager,{
pub mode: CacheMode,
pub manager: T,
pub options: HttpCacheOptions,
}
Expand description
Caches requests according to http spec.
Fields§
§mode: CacheMode
Determines the manager behavior.
manager: T
Manager instance that implements the CacheManager
trait.
By default, a manager implementation with cacache
as the backend has been provided, see CACacheManager
.
options: HttpCacheOptions
Override the default cache options.
Implementations§
Source§impl<T> HttpCache<T>where
T: CacheManager,
impl<T> HttpCache<T>where
T: CacheManager,
Sourcepub fn can_cache_request(
&self,
middleware: &impl Middleware,
) -> Result<bool, Box<dyn Error + Sync + Send>>
pub fn can_cache_request( &self, middleware: &impl Middleware, ) -> Result<bool, Box<dyn Error + Sync + Send>>
Determines if the request should be cached
Sourcepub async fn run_no_cache(
&self,
middleware: &mut impl Middleware,
) -> Result<(), Box<dyn Error + Sync + Send>>
pub async fn run_no_cache( &self, middleware: &mut impl Middleware, ) -> Result<(), Box<dyn Error + Sync + Send>>
Runs the actions to preform when the client middleware is running without the cache
Sourcepub async fn run(
&self,
middleware: impl Middleware,
) -> Result<HttpResponse, Box<dyn Error + Sync + Send>>
pub async fn run( &self, middleware: impl Middleware, ) -> Result<HttpResponse, Box<dyn Error + Sync + Send>>
Attempts to run the passed middleware along with the cache
Trait Implementations§
Source§impl<T> HttpCacheInterface for HttpCache<T>where
T: CacheManager,
impl<T> HttpCacheInterface for HttpCache<T>where
T: CacheManager,
Source§fn analyze_request(
&self,
parts: &Parts,
mode_override: Option<CacheMode>,
) -> Result<CacheAnalysis, Box<dyn Error + Sync + Send>>
fn analyze_request( &self, parts: &Parts, mode_override: Option<CacheMode>, ) -> Result<CacheAnalysis, Box<dyn Error + Sync + Send>>
Analyze a request to determine cache behavior
Source§async fn lookup_cached_response(
&self,
key: &str,
) -> Result<Option<(HttpResponse, CachePolicy)>, Box<dyn Error + Sync + Send>>
async fn lookup_cached_response( &self, key: &str, ) -> Result<Option<(HttpResponse, CachePolicy)>, Box<dyn Error + Sync + Send>>
Look up a cached response for the given cache key
Source§async fn process_response(
&self,
analysis: CacheAnalysis,
response: Response<Vec<u8>>,
) -> Result<Response<Vec<u8>>, Box<dyn Error + Sync + Send>>
async fn process_response( &self, analysis: CacheAnalysis, response: Response<Vec<u8>>, ) -> Result<Response<Vec<u8>>, Box<dyn Error + Sync + Send>>
Process a fresh response from upstream and potentially cache it
Source§fn prepare_conditional_request(
&self,
parts: &mut Parts,
_cached_response: &HttpResponse,
policy: &CachePolicy,
) -> Result<(), Box<dyn Error + Sync + Send>>
fn prepare_conditional_request( &self, parts: &mut Parts, _cached_response: &HttpResponse, policy: &CachePolicy, ) -> Result<(), Box<dyn Error + Sync + Send>>
Update request headers for conditional requests (e.g., If-None-Match)
Source§async fn handle_not_modified(
&self,
cached_response: HttpResponse,
fresh_parts: &Parts,
) -> Result<HttpResponse, Box<dyn Error + Sync + Send>>
async fn handle_not_modified( &self, cached_response: HttpResponse, fresh_parts: &Parts, ) -> Result<HttpResponse, Box<dyn Error + Sync + Send>>
Handle a 304 Not Modified response by returning the cached response
Auto Trait Implementations§
impl<T> Freeze for HttpCache<T>where
T: Freeze,
impl<T> !RefUnwindSafe for HttpCache<T>
impl<T> Send for HttpCache<T>
impl<T> Sync for HttpCache<T>
impl<T> Unpin for HttpCache<T>where
T: Unpin,
impl<T> !UnwindSafe for HttpCache<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more