Todd Finney wrote:
>
> This another follow-up to a previous thread, "maximum
> (practical) size of $r->notes", from last week. We're
> trying to redirect the output of $subr->run(), and return
> it as a variable instead of sending it to the browser.
Usually people consider this, realize that it's hard, and find a way to
do what they need in perl without going back to Apache. If all of your
subrequests are things like static files, CGI, and SSI, you may find it
easier to generate the same results from perl code than to try and
modify core Apache architecture. Libraries for doing most common tasks
exist (Apache::SSI, Apache::PerlRun, Apache::File).
- Perrin