xsl-list
[Top] [All Lists]

RE: Performance Tuning

2004-11-10 15:22:29
Andrew,
Thanks for your suggestions but I could not gain
significant amount with your suggestions.
Its coming around the same with saxon parser.


 --- Andrew Welch <ajwelch(_at_)piper-group(_dot_)com> wrote: 

The XSL that I use has  three
"preceding-sibling::"
The time taken to parse a 150KB XML in Xalan is
1.9
sec and with Saxon8 its 1.6 secs.

Since the above parsing is done frequently in my
application with different input XMLs. I need to
further reduce the transformation timing (in
milliseconds may be). The only bottleneck I see
are
the 3 preceding-sibling. Can we somehow remove
them
or
use some other logic, to reduce my
transformation
time.

Rather than walk the preceding-sibling axis many
times, why not perform
a single pass in a global variable and then key into
that for the
positions:

So, the top-level variable:

<xsl:variable name="parentGroup">
  <xsl:for-each select="ParentGroup">
    <parentgroup id="generate-id()"
pos="position()"/>
  </xsl:for-each>
</xsl:variable>

And the key:

<xsl:key name="parentGroups" match="ParentGroup"
use="@id"/>

Then, instead of using
count(preceding-sibling::ParentGroup), use:

<xsl:value-of select="key('parentGroups',
generate-id())/@pos"/>

Remember you will need to change the context node to
$parentGroup before
using the key.

If you do this, please post back any changes in
performance.

cheers
andrew



--+------------------------------------------------------------------
XSL-List info and archive: 
http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to:
http://lists.mulberrytech.com/xsl-list/
or e-mail:
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--

 


        
        
                
___________________________________________________________ 
ALL-NEW Yahoo! Messenger - all new features - even more fun! 
http://uk.messenger.yahoo.com


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