[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Cost of complex match patterns

Subject: Re: Cost of complex match patterns
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Tue, 12 Aug 2008 11:20:03 +0100
Re:  Cost of complex match patterns
>> match="foo[//bar]"
>
>> match="foo"
>
>> Should the former be avoided, or because it's within a match
>> pattern it's converted to a simple lookup so it's fine?
>
>  I don't know the details of your processor on that point, but out of
> interest, if you only match on the main input tree, you can replace the
> former by:
>
>    <xsl:variable name="has-bar" as="xs:boolean" select="
>        exists(//bar)"/>
>
>    <xsl:template match="foo[$has-bar]">


Indeed (apart from 1.0 where you can't use variables in match
patterns)... the question I'm asking though is whether you need to
workaround potentially expensive match patterns (as they will be
evaluated per element), or whether through the inbuilt pattern
matching process it's actually a good idea to move work into the match
pattern.

For example,

match="foo[ancestor::bar/@type = 'A']"

and

match="foo[ancestor::bar/@type = 'B']"

 (or "bar[@type = 'A']//foo" but I prefer the above)

Is it better to pass down the type through parameters to avoid the
predicate, or is there no need to worry about it because it becomes a
simple lookup?

I'm pretty sure it's the latter....


-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.