pub struct CacheLayer { /* private fields */ }Expand description
Tower Layer that produces CacheService instances sharing the same
cache state and CacheHandle.
Because CacheService::new() returns a (CacheService, CacheHandle) tuple,
a standard Layer cannot propagate the side-channel handle. CacheLayer
solves this by creating the shared cache state up-front and handing out an
Arc-cloned handle to the caller while cloning the same Arc into every
service produced by Layer::layer.
§Example
use mcp_proxy::cache::{CacheLayer, CacheHandle};
use mcp_proxy::config::{BackendCacheConfig, CacheBackendConfig};
let cfg = BackendCacheConfig {
resource_ttl_seconds: 300,
tool_ttl_seconds: 60,
max_entries: 1000,
};
let backend_cfg = CacheBackendConfig::default();
let (layer, handle) = CacheLayer::new(
vec![("api/".to_string(), &cfg)],
&backend_cfg,
);
// `layer` implements `tower::Layer<S>` and can be used in a middleware stack.
// `handle` can be used to query stats or clear the cache.Implementations§
Source§impl CacheLayer
impl CacheLayer
Sourcepub fn new(
configs: Vec<(String, &BackendCacheConfig)>,
backend_config: &CacheBackendConfig,
) -> (Self, CacheHandle)
pub fn new( configs: Vec<(String, &BackendCacheConfig)>, backend_config: &CacheBackendConfig, ) -> (Self, CacheHandle)
Create a new cache layer and return it with a shareable CacheHandle.
The handle provides CacheHandle::stats() and CacheHandle::clear()
over the same underlying cache state used by every service the layer
produces.
Trait Implementations§
Source§impl Clone for CacheLayer
impl Clone for CacheLayer
Source§fn clone(&self) -> CacheLayer
fn clone(&self) -> CacheLayer
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CacheLayer
impl !RefUnwindSafe for CacheLayer
impl Send for CacheLayer
impl Sync for CacheLayer
impl Unpin for CacheLayer
impl UnsafeUnpin for CacheLayer
impl !UnwindSafe for CacheLayer
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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