Hello. I am doing a lot of ap_rprintf(r, ...) in my content handler, generating more than tens of megabytes of data per request. I suppose all this data is kept in r->pool, which is freed after request. So if one user consume 20 MiB, hundred will consume 2 GiB.
How can I generate a lot of data without keeping all that data in r->pool till the end of request? -- Marko Kevac