forked from JoneXiong/PyRedisAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
32 lines (28 loc) · 632 Bytes
/
config.py
File metadata and controls
32 lines (28 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
base = {
'servers':[
{'index':0,
'name': 'server1',
'host': '127.0.0.1',
'port': 6379,
'password': '',
'databases':16
},
{'index':1,
'name': 'server2',
'host': '127.0.0.1',
'port': 6379,
'databases':16
},
],
'seperator' : ':',
'maxkeylen' : 100
}
media_prefix = "pyred_media"
host = '0.0.0.0'
port = 8085
debug = True
scan_batch = 10000
show_key_self_count = False
lang = 'zh_CN'
admin_user = 'admin'
admin_pwd = 'admin'