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
... | @@ -7,3 +7,4 @@ nvidia-ml-py>=12.535.108 | ... | @@ -7,3 +7,4 @@ nvidia-ml-py>=12.535.108 |
flash-attn>=2.0.0 | flash-attn>=2.0.0 | ||
pyinstaller>=5.0.0 | pyinstaller>=5.0.0 | ||
PyMySQL>=1.0.0 | PyMySQL>=1.0.0 | ||
redis>=4.0.0 | |||
\ No newline at end of file |
Please
register
or
sign in
to comment