method
RedisClient.client
@param args
Subcommand and its arguments (ID, GETNAME, SETNAME, LIST, KILL, etc.)
@returns
Promise that resolves with the subcommand's result
await redis.client("SETNAME", "myconnection");
const name = await redis.client("GETNAME"); // "myconnection"