method
RedisClient.script
@param args
Subcommand and its arguments (LOAD, EXISTS, FLUSH, KILL)
@returns
Promise that resolves with the subcommand's result
const sha = await redis.script("LOAD", "return ARGV[1]");
await redis.script("EXISTS", sha); // [1]
await redis.script("FLUSH");