surfx / src /cache /mod.rs
Zsombor Gegesy
Make the cache types compile time feature flags too, and make it more configurable!
76795c4
raw
history blame
259 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;
pub mod error;
#[cfg(feature = "redis")]
pub mod redis_cacher;