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

RE: Best way to count siblings

Subject: RE: Best way to count siblings
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Wed, 15 Dec 2004 11:14:11 -0000
previous siblings
> count(../*) -1 is shorter, you;d have to ask an implementer which is
> more efficient. Often the siblings are the current node list in which
> case last()-1 is likely to be the most efficient.

last() can be very efficient or very inefficient depending on the
circumstances. XSLT processors often use lazy evaluation, in which the nodes
are processed one-at-a-time without ever reading the whole list into memory.
Using last() can break this pipelined execution model, forcing the processor
to allocate memory for the entire list of say a million nodes - or to
evaluate the whole expression twice, if it decides that's better. Saxon uses
both these techniques depending on the circumstances. But if the node list
is already in memory for some other reason, e.g. because it is being sorted,
then last() should be very fast.

The only way to tell is by measuring.

Michael Kay
http://www.saxonica.com/

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.