xsl-list
[Top] [All Lists]

RE: [xsl] Efficiency: predicate vs function

2007-07-23 02:44:03
For some anecdotal evidence, when I had this exact 
requirement for the Sudoku Solver [1] and switched from 
$seq[position() > 1] to subsequence($seq, 2) the performance 
increase was significant.

That's a little worrying because Saxon is going to a lot more trouble to
optimize the former expression. Looks as if the effort is counter-productive
in this case. There are always cases where that can happen of course (for
example, optimizations to reduce memory usage can be unhelpful if you've got
enough memory not to need them) but I definitely need to investigate why
this is happening.

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


--~------------------------------------------------------------------
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>
--~--