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; const SessConf = cl.load( "config.all" ).sx.modular.session;
var Client = Redis.createClient( var Client = Redis.createClient({
SessConf.config.port "legacyMode": true
, SessConf.config.host , "url": `redis://${SessConf.config.host}:${SessConf.config.port}/${SessConf.config.database}`
, SessConf.config.options });
);
Client.addListener( "error", ( e ) => { throw e; } ); Client.addListener( "error", ( e ) => { throw e; } );