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=7556>. 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=7556 Memory grows while transforming ------- Additional Comments From [EMAIL PROTECTED] 2002-03-28 07:48 ------- The same problem applies to variables used in a template. In the sample stylesheet you can create a variable with the "non-growing" version and the memory will grow very fast. <xsl:template match="*"> ... <!-- memory grow fast --> <xsl:variable name="foovar"> <xsl:call-template name="foo"> <xsl:with-param name="arg1" select="substring(.,2)"/> </xsl:call-template> </xsl:variable> ... </xsl:template>
