Make Redis DBs configurable

This commit is contained in:
Mark Veidemanis 2022-07-21 13:39:50 +01:00
parent 4b2a1f2735
commit 1532cf482c
1 changed files with 2 additions and 2 deletions

View File

@ -106,5 +106,5 @@ def initConf():
def initMain(): def initMain():
global r, g global r, g
initConf() initConf()
r = StrictRedis(unix_socket_path=config["RedisSocket"], db=0) # Ephemeral - flushed on quit r = StrictRedis(unix_socket_path=config["RedisSocket"], db=config["RedisDBEphemeral"]) # Ephemeral - flushed on quit
g = StrictRedis(unix_socket_path=config["RedisSocket"], db=1) # Persistent g = StrictRedis(unix_socket_path=config["RedisSocket"], db=config["RedisDBPersistent"]) # Persistent