Re: [xsl] Lesson learned: how to reduce execution time from 26 minutes to 16 seconds

Subject: Re: [xsl] Lesson learned: how to reduce execution time from 26 minutes to 16 seconds
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 8 Nov 2014 16:02:40 -0000
Costello, Roger L. costello@xxxxxxxxx wrote:

You've got a long, linear sequence of <row> elements to process. You access each <row> element like so:

/*/row[position() eq $counter]

where $counter is an incrementing counter.

Why the incrementing counter, why not simply <xsl:apply-templates select="/*/row"/> ?

Current Thread