fixed up session maanger to use just redis no in store memory, finished prices

This commit is contained in:
Boki 2025-06-29 16:55:19 -04:00
parent 100efb575f
commit 966f6ac612
16 changed files with 773 additions and 351 deletions

View file

@ -42,9 +42,9 @@ export const QM_CONFIG = {
// Session management settings
export const SESSION_CONFIG = {
MIN_SESSIONS: 2,
MAX_SESSIONS: 2,
MAX_FAILED_CALLS: 3,
MIN_SESSIONS: 20,
MAX_SESSIONS: 100,
MAX_FAILED_CALLS: 5,
SESSION_TIMEOUT: 5000, // 10 seconds
API_TIMEOUT: 30000, // 15 seconds
} as const;