Upgraded redis client but use legacy mode

This commit is contained in:
斟酌 鵬兄 2022-04-06 13:51:37 +09:00
parent d0ef93e58c
commit df548739da

View File

@ -5,11 +5,10 @@ const Redis = require( "redis" );
const SessConf = cl.load( "config.all" ).sx.modular.session;
var Client = Redis.createClient(
SessConf.config.port
, SessConf.config.host
, SessConf.config.options
);
var Client = Redis.createClient({
"legacyMode": true
, "url": `redis://${SessConf.config.host}:${SessConf.config.port}/${SessConf.config.database}`
});
Client.addListener( "error", ( e ) => { throw e; } );