xsl-list
[Top] [All Lists]

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

2014-11-08 10:02:47
Costello, Roger L. costello(_at_)mitre(_dot_)org 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"/>
?

--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>