A programming article describing how the author wrote a faster XML parser (in Java) than a “popular DOM-based parser”. Slightly interesting because he uses a different data structure instead of the usual tree. But there are plenty of unbelivably slow Java parsers for XML, especially those that implement a DOM interface.
Categories