On Thu, 2004-03-18 at 17:04, [EMAIL PROTECTED] wrote: > Thank you all for your suggestions. I'm a little puzzled on one point, > though: does extracting a little part of a large file involve much > memory consumption by XSLT? Because I think the problem boils down to > this and I wonder if it's my faulty XSLT stylesheets or it's "normal" > behavior.
This is normal behaviour. It doesn't matter whether you extract a small or a big part, the XSLT processor will always load the complete document into memory. Also, if the pages you generate are large, read the comment in the root sitemap.xmap about the outputBufferSize parameter. If you are creating these pages only once, instead of serving them live, you might also want to disable caching (type="noncaching" on the map:pipeline element). This can also save a lot of memory. -- Bruno Dumon http://outerthought.org/ Outerthought - Open Source, Java & XML Competence Support Center [EMAIL PROTECTED] [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
