You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2003/07/10 20:40:07 UTC

DO NOT REPLY [Bug 20710] - Performance Problems-NEED HELP!

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20710>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20710

Performance Problems-NEED HELP!





------- Additional Comments From igorh@ca.ibm.com  2003-07-10 18:40 -------
Several advices 

1. Try to use XSLTC setting ( before creating TransformerFactory)
System.setProperty("javax.xml.transform.TransformerFactory",org.apache.xalan.xsltc.trax.TransformerFactoryImp);
 

2. Create TransformerFactory only once, transformer per stylesheet  (not per
transformation )

3. Use multiple thread (if you are on multi CPU machine). Transformation from a
transformer should be in one thread.