spacex / src /cache /mod.rs
Evan Yang
✨ Compression and encryption for the cached search results (#443)
efa8efc unverified
raw
history blame contribute delete
436 Bytes
//! This module provides the modules which provide the functionality to cache the aggregated
//! results fetched and aggregated from the upstream search engines in a json format.
pub mod cacher;
#[cfg(any(feature = "encrypt-cache-results", feature = "cec-cache-results"))]
/// encryption module contains encryption utils such the cipher and key
pub mod encryption;
pub mod error;
#[cfg(feature = "redis-cache")]
pub mod redis_cacher;