chore: lower session cache size and TTL (5 sessions, 5 min TTL)
Made-with: Cursor
This commit is contained in:
parent
f4965b2cbd
commit
e26310870c
1 changed files with 2 additions and 2 deletions
|
|
@ -3,10 +3,10 @@
|
|||
*/
|
||||
|
||||
/** Maximum number of sessions to cache */
|
||||
export const MAX_CACHE_SESSIONS = 50;
|
||||
export const MAX_CACHE_SESSIONS = 5;
|
||||
|
||||
/** Cache TTL in minutes */
|
||||
export const CACHE_TTL_MINUTES = 10;
|
||||
export const CACHE_TTL_MINUTES = 5;
|
||||
|
||||
/** Cleanup interval in minutes */
|
||||
export const CACHE_CLEANUP_INTERVAL_MINUTES = 5;
|
||||
|
|
|
|||
Loading…
Reference in a new issue