-
Recent Posts
Archives
- March 2012
- January 2012
- August 2011
- November 2010
- September 2010
- August 2010
- June 2010
- February 2010
- December 2008
- November 2008
- September 2008
- July 2008
- June 2008
- May 2008
- March 2008
- November 2007
- October 2007
- July 2007
- June 2007
- April 2007
- March 2007
- January 2007
- October 2006
- September 2006
- August 2006
Categories
Meta
Category Archives: Performance Optimization
Fizz Buzz with XPath 2.0/3.0
A few days ago Jim Fuller asked on Twitter: @xquery fizz buzz with xquery http://bit.ly/wC6Ra5 can anyone come up with a faster version ? #xquery9:00 AM Feb 26, 2012 Here are my two answers in the categories: 1) Elegant; 2) Fast … Continue reading
Posted in Performance Optimization, XPath, XPath 3.0, XSLT 2.0, XSLT 3.0
2 Comments
Optimized Repetitive Prepends, Part III: Understanding the Solution
Technorati Tags: performance optimization, algorithms, algorithmic complexity, functional programming In Part II of this post a solution was given to the problem presented in Part I: "Can we implement an algorithm for repetitive prepends that will be run by … Continue reading
Posted in Performance Optimization
Leave a comment
Performance Feat: Eliminate a dimension of complexity in XSLT Processor’s repetitive prepends. Part II: The Solution.
Technorati Tags: Performance optimization, algorithmic complexity, XPath sequence operationsTechnorati Profile Update: Minor code cleanup (using better names now). In my previous post I defined the problem of improving the quadratical performance of an XSLT processor P1 when performing repetitive prepends … Continue reading
Posted in Performance Optimization
Leave a comment
Performance Feat: Eliminate a dimension of complexity in XSLT Processor’s repetitive prepends. Part I: The Problem.
Update: Minor code cleanup. Prepending a list xs with a list ys to obtain the concatenation (of ys ++ xs ) of the two is usually a cheap operation which, when done non-destructively, requires only to copy the list ys … Continue reading
Posted in Performance Optimization
Leave a comment