cache: add in-memory fallback stores

This commit is contained in:
a.tolmachev
2026-05-03 21:19:29 +00:00
parent 1deb70c926
commit c5cd6c1526
5 changed files with 354 additions and 6 deletions
+4 -1
View File
@@ -12,7 +12,10 @@ mod secret_crypto;
mod streaming;
pub use auth::ResolvedAuth;
pub use cache::{RuntimeCacheConfig, RuntimeCacheConfigError};
pub use cache::{
InMemoryCoordinationStateStore, InMemoryRateLimitStateStore, InMemoryReplayGuardStore,
InMemoryResponseCacheStore, RuntimeCacheConfig, RuntimeCacheConfigError,
};
pub use error::RuntimeError;
pub use executor::RuntimeExecutor;
pub use limits::{RuntimeLimits, RuntimeLimitsConfigError};