0

我对异步编程不是很有经验,所以请原谅我的无知。

我正在尝试异步生成 PDFS 列表以提高性能。

但是,无论是异步还是同步,代码的运行方式都是一样的:

Parallel Test MS: 10452
Async Test MS: 9971
Sync Test MS: 10501

有什么明显的我做错了,还是图书馆?我正在使用以下文档:https ://ironpdf.com/docs/questions/async/

主要的:

static async Task Main(string[] args)
        {
            var html = @"<h1>Hello World!</h1><br><p>This is IronPdfss.</p>";
            Stopwatch stopwatch = new Stopwatch();
            List<PdfDocument> pdfDocuments = new List<PdfDocument>();
            List<string> htmlStrings = new List<string>();
            for (int i = 0; i < iterations; i++)
                htmlStrings.Add(html);

            stopwatch.Start();
            Parallel.ForEach(htmlStrings, htmlString =>
            {
                var document = RenderPdf(htmlString);
                pdfDocuments.Add(document);
            });
            stopwatch.Stop();
            Console.WriteLine($"Parallel Test MS: {stopwatch.ElapsedMilliseconds}");

            stopwatch.Restart();
            var tasks = htmlStrings.Select(async h =>
            {
                var response = await RenderPdfAsync(h);
                pdfDocuments.Add(response);
            });
            await Task.WhenAll(tasks);
            stopwatch.Stop();
            Console.WriteLine($"Async Test MS: {stopwatch.ElapsedMilliseconds}");

            stopwatch.Restart();
            foreach (string h in htmlStrings)
            {
                var document = RenderPdf(h);
                pdfDocuments.Add(document);
            }
            stopwatch.Stop();
            Console.WriteLine($"Sync Test MS: {stopwatch.ElapsedMilliseconds}");

            Console.ReadLine();
        }

辅助方法:

private static async Task<IronPdf.PdfDocument> RenderPdfAsync(string Html, IronPdf.PdfPrintOptions PrintOptions = null)
{
    return await Task.Run(() => RenderPdf(Html, PrintOptions));
}
private static IronPdf.PdfDocument RenderPdf(string Html, IronPdf.PdfPrintOptions PrintOptions = null)
{
    var Renderer = new IronPdf.HtmlToPdf();
    if (PrintOptions != null)
    {
        Renderer.PrintOptions = PrintOptions;
    }
    PdfDocument Pdf = Renderer.RenderHtmlAsPdf(Html);
    return Pdf;
}
4

4 回答 4

3
private static async Task<IronPdf.PdfDocument> RenderPdfAsync(string Html, IronPdf.PdfPrintOptions PrintOptions = null)
{
    return await Task.Run(() => RenderPdf(Html, PrintOptions));
}

这就是通常所说的“假异步”。这是一种具有异步签名的方法,它并不是真正的异步。它只是在线程池线程上运行的同步工作。因此,“异步”代码的行为与并行代码非常相似:它在线程池线程上运行每个渲染。

在这种情况下,操作受 CPU 限制,而不是 I/O 限制,因此同步或并行代码是正确的方法。例如,我认为并行 LINQ 是最好的方法。您不想在这里使用异步代码。

你的时间奇怪的是并行代码并不比同步代码快。对此的一种解释是 PDF 渲染已经是并行的,因此额外的并行性无济于事。另一种解释是某些东西将您的应用程序限制为只能在单个 CPU 内核上运行。

于 2020-08-01T00:16:20.887 回答
2

看看这里:

        var tasks = htmlStrings.Select(async h =>
        {
            var response = await RenderPdfAsync(h);
            pdfDocuments.Add(response);
        });
        await Task.WhenAll(tasks);

你在等待Select,所以你一次只做一个。尝试做这样的事情:

        var tasks = htmlStrings.Select(h =>
        {
            return RenderPdfAsync(h);
        });
        await Task.WhenAll(tasks);
        foreach(var t in tasks){ pdfDocuments.Add(await t); }

请记住,您已经在 ( Parallel.ForEach) 上面使用了适当的并行库,并且为了保持一致,您可能也应该在此处使用该模式。

于 2020-07-31T18:30:55.433 回答
2

截至 2021 年 9 月 - IronPDF 的 2021.9 版本在并行性方面比以往任何时候都好得多。

真正的多线程在 Web 和桌面应用程序开发方面对我的团队来说效果很好。

此版本在 nuget 上可用:https ://www.nuget.org/packages/IronPdf/

在 IronPdf 版本 2021.9.3737 上测试......

C# & VB 代码示例:

  • IronPDF + 异步:https ://ironpdf.com/examples/async/

  • IronPDF + System.Threading:https ://ironpdf.com/examples/threading/

  • IronPDF + Parallel.ForEach:https ://ironpdf.com/examples/parallel/

     using System;
     using System.Collections.Generic;
     using System.Linq;
     using System.Threading.Tasks;
     using IronPdf;
    
    
     var Renderer = new IronPdf.ChromePdfRenderer();
    
     var htmls = new List<string>()  { "<h1>Html#1</h1>", "<h1>Html#2</h1>", "<h1>Html#3</h1>" };
    
     Parallel.ForEach(htmls, (html) => 
     {
             var pdfDocument = Renderer.RenderHtmlAsPdfAsync(html).Result;
             // do something with each pdfDocument  
     });
    
于 2021-10-06T05:58:07.243 回答
0

这条线

var response = await RenderPdfAsync(h);

应该是这样的

var task = RenderPdfAsync(h);

然后一起等待所有任务

于 2020-07-31T18:31:06.240 回答