Re: [xsl] How is memory allocated in recursive XSLT templates?

Subject: Re: [xsl] How is memory allocated in recursive XSLT templates?
From: Abel Braaksma <abel.online@xxxxxxxxx>
Date: Wed, 02 May 2007 22:55:39 +0200
Rashmi Rubdi wrote:

I have to read up on how to note the time in XSLT 2.0, will use Google for that.



You can't (unless you do a three-step process where you call the XSLT processor three times). The reason is simple: all date/time functions are stable and will return the same date/time at any moment in the process and you can't be sure whether that's the time at the beginning of the process or at the end.


The best way to time XSLT is to call it from another system (i.e., Java) and measure the time before/after. But there are some trivialities that you should be aware of :)

Current Thread