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

RE: RFC: Attributes and XML-RPC

  • From: "Julian Reschke" <reschke@m...>
  • To: "Mark Nutter" <mnutter@f...>,<xml-dev@i...>
  • Date: Thu, 23 Sep 1999 10:41:10 +0200

mark nutter
I find this way surprising. Yes, it's clear that opening and closing tags compress well, but I would still have expected the attribute version to be smaller...
 

--
Julian F. Reschke (mailto:reschke@m...)
MedicalData Service GmbH Münster, Germany

-----Original Message-----
From: owner-xml-dev@i... [mailto:owner-xml-dev@i...]On Behalf Of Mark Nutter
Sent: Wednesday, September 22, 1999 7:26 PM
To: xml-dev@i...
Subject: RE: RFC: Attributes and XML-RPC

At 12:16 PM 09/22/99 -0400, Hunter, David wrote:
So even if you
compress the files, the attribute version will be able to compress to 50%
smaller than the other file.  Again, 2KB isn't a lot, but if we're talking
megabytes in size, 50% is a lot.

I wrote a quick perl script to take /usr/dict/words and turn it into an XML file, with some artificially generated "attributes".  In the resulting file named attrib.xml, each <word> tag contains the additional information as attributes.  I did the same thing to produce a file called child.xml, except that the additional information is presented as a child element instead of as an attribute.  Here are the results:

$ ./make.pl
$ ls -l
total 13004
-rw-rw-r--   1 mnutter  mnutter   5811852 Sep 22 13:16 attrib.xml
-rw-rw-r--   1 mnutter  mnutter   7445892 Sep 22 13:16 child.xml
-rwxr-xr-x   1 mnutter  mnutter       976 Sep 22 13:16 make.pl
$ gzip attrib.xml
$ gzip child.xml
$ ls -l
total 1127
-rw-rw-r--   1 mnutter  mnutter    671039 Sep 22 13:16 attrib.xml.gz
-rw-rw-r--   1 mnutter  mnutter    472394 Sep 22 13:16 child.xml.gz
-rwxr-xr-x   1 mnutter  mnutter       976 Sep 22 13:16 make.pl

I used gzip as an example of off-the-shelf compression technology.  As you can see, even though the raw child.xml file is larger, the compressed version is *smaller* than the corresponding implementation with attributes.

This may not be true in all cases, of course, but I expect it often will, due to the way such compression algorithms work.

For your reference, here is the Perl script I used to create the two files:

open WORDS, "</usr/dict/words" or die "Couldn't open dictionary.\n";
open ATTRIB, ">attrib.xml" or die "Couldn't open attrib.xml\n";
open CHILD, ">child.xml" or die "Couldn't open child.xml\n";

@twenty_strings = qw(one two three four five six seven eight nine ten
                     eleven twelve thirteen fourteen fifteen sixteen
                     seventeen eighteen nineteen twenty);

print ATTRIB "<attrib>\n";
print CHILD "<child>\n";

while($word = <WORDS>)
{
    $time = time();
    $timestr = localtime($time);
    $twenty = rand % 20;
    $twentystr = $twenty_strings[$twenty];
    print ATTRIB <<EOM;
  <word time="$time" timestr="$timestr" twenty="$twenty"
        twentystr="$twentystr">$word</word>
EOM
    print CHILD <<EOM;
  <word>
    <time>$time</time>
    <timestr>$timestr</timestr>
    <twenty>$twenty</twenty>
    <twentystr>$twentystr</twentystr>
  </word>
EOM
}

print ATTRIB "</attrib>\n";
print CHILD "</child>\n";

close CHILD;
close ATTRIB;
close WORDS;


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Mark Nutter, <mnutter@f...>
Internet Applications Developer
FORE Systems
Some people are atheists 'til the day they die.

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.