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

Parsing Performance


parsing performance
Martin Soukup writes:

 > I did the same in Java, and it is well over 1000 times slower. I
 > agree with John that performance isn't everything, but 1000 times
 > slower using the same technology is, IMO, completely unreasonable.

The biggest mistake people make designing XML processing systems is
not distinguishing between what happens in the loop and what happens
outside the loop.

Optimizations inside the parsing/processing loop can give enormous
payoffs -- for example, if you have a method that's invoked for every
element, every text chunk, or even every character, it's an excellent
candidate for optimization.  On the other hand, optimizing a method
that's invoked only once per document (unless your system handles
thousands of small documents per minute) or once per session is
generally a waste.

For example, let's say that a method currently runs in 10
microseconds, and through brilliant refactoring, you make it 1000
times faster.  If that method is invoked once for every character in a
1GB document, then you've just shaved 10 seconds off execution time --
if you managed that with only a day's work, you deserve a productivity
aware.  If, on the other hand, that method is invoked once during the
session, you've shaved about 0.00001 seconds off execution time -- if
you spent a whole day doing that, you deserve something more along the
lines of a bozo award.

Using an exception to terminate parsing falls into the latter category
unless, as I mentioned, you have an application that processes
thousands of XML documents every minute.


All the best,


David

-- 
David Megginson, david@m..., http://www.megginson.com/

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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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.