> Artemis broker would be > slow with large XML. The stream reader is not parsing the whole file..it is streaming the XML instead of loading the whole thing. It will be the same as if it was reading a lot of data from any other storage, the large XML won't make much a difference AFAIK.
> > Gzip certainly works. I wasn't thinking of doing anything crazy with > compression. What I was thinking of was just doing something simple like > have an optional flag the user could set for the command that would just > end up creating a GZIPOutputStream and write the XML directly to a gzip > file which would save time (and disk space) from having to create the XML > first and then compress it after the fact. Yep, I thought the same.. it can definitely be done.
