mirror of
https://github.com/aaPanel/aaPanel.git
synced 2026-08-30 11:49:48 +02:00
1. After the update, the software and panel directory permissions will be set to strict mode (it will be restored automatically after modification) 2. Increase the panel comprehensive anti-riot mechanism 3. Enhance the security of the panel session<br> 4. Enhanced panel entry verification mechanism 5. Optimize the terminal 6. Optimize the panel memory release mechanism Note 1: Version 6.8.2/6.9.11 has security issues, please be sure to upgrade to the latest version Note 2: After this update is successful, it will automatically log out and you need to log in again
22 lines
474 B
Python
22 lines
474 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from cachelib.base import BaseCache, NullCache
|
|
from cachelib.simple import SimpleCache
|
|
from cachelib.file import FileSystemCache
|
|
from cachelib.memcached import MemcachedCache
|
|
from cachelib.redis import RedisCache
|
|
from cachelib.uwsgi import UWSGICache
|
|
|
|
__all__ = [
|
|
'BaseCache',
|
|
'NullCache',
|
|
'SimpleCache',
|
|
'FileSystemCache',
|
|
'MemcachedCache',
|
|
'RedisCache',
|
|
'UWSGICache',
|
|
]
|
|
|
|
__version__ = '0.1'
|
|
__author__ = 'Pallets Team'
|