public static func del(_ keys: [RedisKey]) -> RedisCommand<Int> {
        let args = keys.map(RESPValue.init(from:))
        return .init(keyword: "DEL", arguments: args)
    }