Add Redis support for session storage
- Added Redis as optional session storage backend - SessionManager automatically detects and uses Redis if available - Falls back to SQL database storage if Redis is not configured - Added redis>=4.0.0 to requirements.txt - Configurable via REDIS_HOST, REDIS_PORT, REDIS_DB, REDIS_PASSWORD environment variables - Maintains same session timeout and functionality
Showing
... | ... | @@ -6,4 +6,5 @@ psutil>=5.8.0 |
nvidia-ml-py>=12.535.108 | ||
flash-attn>=2.0.0 | ||
pyinstaller>=5.0.0 | ||
PyMySQL>=1.0.0 | ||
\ No newline at end of file | ||
PyMySQL>=1.0.0 | ||
redis>=4.0.0 | ||
\ No newline at end of file |
Please
register
or
sign in
to comment