Question

Especially for server applications, whether to cache an XslCompiledTransform instance if the same stylesheet is likely to be executed again.Why it is important to cache loaded XslCompiledTransform instances?

Was it helpful?

Solution

Because the cost of compiling a stylesheet is high compared with the cost of executing it, and you don't want to incur this cost on each transformation if you can avoid it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top