agent-ecosystem/src/shared/constants/cache.ts
2026-03-31 18:52:15 +03:00

12 lines
267 B
TypeScript

/**
* Cache-related constants.
*/
/** Maximum number of sessions to cache */
export const MAX_CACHE_SESSIONS = 5;
/** Cache TTL in minutes */
export const CACHE_TTL_MINUTES = 5;
/** Cleanup interval in minutes */
export const CACHE_CLEANUP_INTERVAL_MINUTES = 5;