Skip to main content

Cache

Struct Cache 

Source
pub struct Cache { /* private fields */ }
Expand description

Main cache manager handling multiple cache objects

Implementations§

Source§

impl Cache

Source

pub fn new(config: CacheConfig) -> CacheResult<Self>

Creates a new Cache with given configuration

§Parameters
  • config: CacheConfig - Cache configuration
§Returns

New Cache instance

Source

pub fn create( &mut self, name: &str, custom_config: Option<&str>, ) -> CacheResult<CacheObject>

Creates a new cache object with optional custom configuration

§Parameters
  • name: &str - Cache object identifier
  • custom_config: Option<&str> - Optional JSON configuration override
§Returns

New CacheObject instance

Source

pub fn get(&self, name: &str) -> CacheResult<CacheObject>

Retrieves an existing cache object by name

§Parameters
  • name: &str - Cache object identifier
§Returns

CacheResult<CacheObject> - Retrieved cache object or error

Source

pub fn len(&self) -> usize

Returns the number of cache objects

§Returns

usize - Count of cache objects

Source

pub fn is_empty(&self) -> bool

Check if the cache list is empty

§Returns

bool - True if the cache list is empty, false otherwise

Source

pub fn remove(&mut self, name: &str) -> CacheResult<()>

Removes a cache object by name

§Parameters
  • name: &str - Cache object identifier
§Returns

CacheResult<()> - Success or error

Source

pub fn clear(&mut self) -> CacheResult<()>

Clears all cache objects

§Returns

CacheResult<()> - Success or error

Source

pub fn set_config(&mut self, config: CacheConfig)

Updates the cache configuration

§Parameters
  • config: CacheConfig - New configuration
Source

pub fn get_config(&self) -> CacheConfig

Returns current cache configuration

§Returns

CacheConfig - Current configuration

Source

pub fn iter(&self) -> impl Iterator<Item = &CacheObject>

Returns iterator over all cache objects

§Returns

impl Iterator<Item = &CacheObject> - Iterator over cache objects

Auto Trait Implementations§

§

impl Freeze for Cache

§

impl RefUnwindSafe for Cache

§

impl Send for Cache

§

impl Sync for Cache

§

impl Unpin for Cache

§

impl UnwindSafe for Cache

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.