I am using rotativa in MVC3 for downloading multiple views in pdf format. Its working fine in my local system. But when I moved that to production its taking almost 2-3 min to download. Please suggest any option to make that faster in production.
I am using ViewAsPdf in rotativa.
return new ViewAsPdf("PDF") { FileName = "Application1.pdf", CustomSwitches = "--print-media-type" };
Thanks.