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

Re: Big XML file

  • To: "Miguel A. Robles" <marobles.sag@m...>,<xml-dev@l...>
  • Subject: Re: Big XML file
  • From: Elliotte Rusty Harold <elharo@m...>
  • Date: Thu, 10 Jul 2003 09:48:16 -0400
  • In-reply-to: <019701c33ca7$03299e50$b4fb850a@a...>
  • References: <019701c33ca7$03299e50$b4fb850a@a...>

big xml file
At 2:24 PM +0200 6/27/03, Miguel A. Robles wrote:

	Dear colleagues,

	I usually work with XML for sending on information between
	different servers or applications. For example, currently I'm
	working with web services and everithing works fine. The
	problem appears now, because I have to parse a document
	containing a lot of information. DOM is not enough
	to accomplish the object because the document
	is extremly large, and I don't know how SAX deals with this
	kind of files.

	I know that XML is not intended for containing so much
	information, but I have to think about a possible solution.

	What do you think I could act to fix the problem?


You could use XOM: http://www.cafeconleche.org/XOM/

The latest version provides a streaming, tree-based approach that 
allows you to work with pieces of the tree in sequence and then 
discard them. For many record-like documents this is much more 
convenient than SAX while still using only slightly more memory than 
the underlying SAX parser. Indeed, it can process arbitrarily large 
documents with effectively constant memory usage. And unlike SAX the 
document is fully read-write. Unlike some similar approaches this 
doesn't require you to learn XPath to preidentify the nodes of 
interest.

There are limits. This won't help if you really do need to have the 
entire document in memory at once, or if you need to move about 
randomly in the tree. However, if you can work with a peephole view 
of the document stream, then XOM gives you a larger peephole than 
SAX. It can show you whole elements of your choice rather than 
individual tokens. I've found this approach to be shockingly useful 
for many applications. In many cases elements are the right 
granularity for processing a document. DOM's document level view is 
too large. SAX's token level view is too small. XOM's element level 
view is just right. :-)
-- 

   Elliotte Rusty Harold
   elharo@m...
   Processing XML with Java (Addison-Wesley, 2002)
   http://www.cafeconleche.org/books/xmljava
   http://www.amazon.com/exec/obidos/ISBN%3D0201771861/cafeaulaitA

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.