RedisProvider
The Redis client handler class
The RedisProvider class instance re-exports all of redis methods with promise handler for callback.
await RedisProvider.GetConnection().set('test', '1');
await RedisProvider.GetConnection().get('test'); // Result will be '1'
Last modified 4yr ago