Re: Performance of Apache FOP

2009-05-05 Thread Adrian Cumiskey
Hi Tobias, Do you use many page sequences in your FO documents? FOP processes documents by page sequence so if you can section the document contents into lots of small page sequence segments this can help a lot with memory consumption. Good luck! Adrian. Tobias Anstett [k15t.com] wrote:

Re: Performance of Apache FOP

2009-05-05 Thread Tobias Anstett [k15t.com]
Hi Adrian, yes, seams like the whole content is wrapped in one big fo:page-sequence. So there is room for improvement :) I will write to the DocBook XSL mailinglist to get some tip how I can split it in more fine grained fo:page-sequence junks. Cheers and thanks, Tobias On Tue, May 5, 2009 at

Re: Performance of Apache FOP

2009-05-05 Thread Artur Zinatullin
AC Do you use many page sequences in your FO documents? FOP processes AC documents by page sequence so if you can section the document contents AC into lots of small page sequence segments this can help a lot with AC memory consumption. I have just dealt with the problem. The table with 17k

Re: Performance of Apache FOP

2009-05-05 Thread Tobias Anstett [k15t.com]
Hi Adrian, does a fo:page-sequence always break a page or is there a way to continue on the same page? Cheers, Tobias On Tue, May 5, 2009 at 6:44 PM, Adrian Cumiskey d...@cumiskey.com wrote: Hi Artur, In your case not, but in many cases using many page sequences to break up the FO content

Re: Performance of Apache FOP

2009-05-05 Thread Tobias Anstett [k15t.com]
Currently (with another library) I am flushing out every 200 rows and all the thing (800 pages totally) builds in a matter of seconds. Which library are you referring to ? - Tobias - On Tue, May 5, 2009 at 6:57 PM, Artur Zinatullin ar...@webmedia.ee wrote: AC In your case not, but in many

Re: Performance of Apache FOP

2009-05-05 Thread Artur Zinatullin
?? Currently (with another library) I am flushing out ?? every 200 rows and all the thing (800 pages totally) builds in a ?? matter of seconds. TAk Which library are you referring to ? iText - To unsubscribe, e-mail:

Re: Performance of Apache FOP

2009-05-05 Thread Artur Zinatullin
?? Currently (with another library) I am flushing out ?? every 200 rows and all the thing (800 pages totally) builds in a ?? matter of seconds. TAk Which library are you referring to ? Actually, it's about scalability. I've got 99% cases, where table is no bigger than 100 rows. Everything worked

Re: Performance of Apache FOP

2009-05-05 Thread Andreas Delmelle
On 05 May 2009, at 18:47, Tobias Anstett [k15t.com] wrote: Hi Tobias does a fo:page-sequence always break a page or is there a way to continue on the same page? Yes, a new page-sequence always starts on a new page. No way to disable this. Note that using forced breaks

Re: Performance of Apache FOP

2009-05-05 Thread Tobias Anstett [k15t.com]
Hi, I am using the DocBook XSL Stylesheets to generate FO. So the best way to solve my memory issue would be to diverge from article style and start a new fo:page-sequence after every major section like I would do in book style for chapters... Thanks for all the help ;) Cheers, Tobias On Tue,