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

Re: Finding Nodes That Match Distinct Node Value

Subject: Re: Finding Nodes That Match Distinct Node Value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 8 May 2008 17:18:44 +0100
Re:  Finding Nodes That Match Distinct Node Value
> I'm trying not to use keys

Why? This is essentially what they are there for.

   <xsl:for-each select="//Artist[@festival = .]">
 
  I'm guessing that the value of "." is lost because I'm beginning at the
  top of the document again.

no, . inside a predicate always means the node to which the predicate is
being applied, so the Artist node here, this is a general feature, not a
result of the xpath starting with  /. You probably want current().
But //Artist[@festival =  anything] is _exactly what keys are designed
to make efficient.

use 
<xsl:for-each key select="key('f',.)">

where your key is

<xsl:key match="Artist" use="@festival"/>

This is simpler to write (no need for current() or //) and can be 
thousands of times faster when run on a large document.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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.