|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: XSLT sort
> Im trying to get better performance by using keys, I have heard thats
> possible but I dont know how to do.
If you have an expression of the form
//x[@y=$v]
then you can often improve performance by declaring a key
xsl:key name="k" match="x" use="@y"
and changing the expression to
key('k', $v)
But you won't get improved performance, or correct results, by shoving in
calls to key() where they don't make sense.
Michael Kay
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








