Page 1 of 1

Slow Report performance

Posted: Tue Jun 12, 2012 2:15 am
by Tapir
Hi
I have using Stimulsoft Report engine in a web project
Everything works fine when I run it locally and I run it in our test enviroment. THe performance is ok
As soon as I move over this to customer enviroment (excactly same code release), the performance is really bad
A report that takes 3-5 seconds to generate in our test enviroment takes 45-60 seconds in the customer enviorment, or sometimes even longer
This is normally a one page report (data loads very quickly)
Can you give me some clues where I should start too look? Is it temp directories?, memory (4 GB) both on test and customer site?, GAC?,
I need to compile the report as data and components are changed dynamically in the report according to what the user chooses

Thanx


Slow Report performance

Posted: Wed Jun 13, 2012 8:52 am
by Alex K.
Hello,

Please try to use the following options:

Code: Select all

StiOptions.Print.AllowUsePaperSizesFromPrinterSettings = false;
On some servers due to security settings request to the printer is very slow. In creating each new page is going to request to PrinterSettings, to get a list of PaperKind sizes.

Thank you.