xsl-list
[Top] [All Lists]

Re: Speed difference attributes vs elements

2005-09-27 17:44:17
Hi,

One of the ideas of using XML at all, instead of just cooking your own small language, is that reliable and unambigous parsing comes for free.

With


<problem
   models="long list"
   software_releases="long list"
>

you are throwing out some of the advantage -- you again have to parse manually, probably introducing a bug somewhere.

instead of

<problem>
   <models>
      <model>...</model>    (many times)
   </models>
   <software_releases>
      <rel>...</rel>    (many times)
   </software_releases>
</problem>

This is much nicer in that respect, and if you use XSL you'll probably have something working much sooner. That's a real performance consideration too :)

Soren

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--