Re: maximum (practical) size of $r->notes

2000-11-01 Thread Todd Finney
In continuing my work on this template system, I've run into another problem. Any one or more of the components can be a script, and the problem with the existing system which I'm trying to solve is catching redirects by them. The order in which I'm doing things is now: ( 4 part handler ) P

RE: maximum (practical) size of $r->notes

2000-10-30 Thread G.W. Haywood
Hi Geoff, On Mon, 30 Oct 2000, Geoffrey Young wrote: > > Ged mumbled: > > Won't Perl then just keep that memory until the child dies...? > > that is my understanding... I guess that my point was that if you > are going to have the data in perl somewhere the memory is going to > be taken (for exa

RE: maximum (practical) size of $r->notes

2000-10-30 Thread Matt Sergeant
On Mon, 30 Oct 2000, Geoffrey Young wrote: > that is my understanding... I guess that my point was that if you are going > to have the data in perl somewhere the memory is going to be taken (for > example, putting it in a tempfile but then local $/ and slurp). pnotes > allows for passing by refe

RE: maximum (practical) size of $r->notes

2000-10-30 Thread Geoffrey Young
> -Original Message- > From: G.W. Haywood [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 30, 2000 10:06 AM > To: Geoffrey Young > Cc: [EMAIL PROTECTED] > Subject: RE: maximum (practical) size of $r->notes > > > Hi all, > > On Mon, 30 Oct 2000,

RE: maximum (practical) size of $r->notes

2000-10-30 Thread G.W. Haywood
Hi all, On Mon, 30 Oct 2000, Geoffrey Young wrote: > > From: G.W. Haywood [mailto:[EMAIL PROTECTED]] > > If it's a huge amount of data and you don't want to bloat your > > processes, why not pass a tempfile name/pointer/handle in $r->notes > > or (easier) just place a reference to a variable co

RE: maximum (practical) size of $r->notes

2000-10-30 Thread Geoffrey Young
> -Original Message- > From: G.W. Haywood [mailto:[EMAIL PROTECTED]] > Sent: Monday, October 30, 2000 7:29 AM > To: Matthew Byng-Maddick > Cc: [EMAIL PROTECTED] > Subject: Re: maximum (practical) size of $r->notes > > > Hi all, > > On Mon, 30

Re: maximum (practical) size of $r->notes

2000-10-30 Thread G.W. Haywood
Hi all, On Mon, 30 Oct 2000, Matthew Byng-Maddick wrote: > On Mon, 30 Oct 2000, Matt Sergeant wrote: > > On Mon, 30 Oct 2000, Todd Finney wrote: > > AxKit uses the notes table to store interim strings for template > > processing. I've not yet heard a bug related to it, but then I'm not > > deliv

Re: maximum (practical) size of $r->notes

2000-10-30 Thread Matthew Byng-Maddick
On Mon, 30 Oct 2000, Matt Sergeant wrote: > On Mon, 30 Oct 2000, Todd Finney wrote: > > I'm concerned about putting large amounts of data into > > $r->notes. Some of our script output can be pretty > > heavy. If $r->notes can only take simple strings, how > > large of a simple string is it sa

Re: maximum (practical) size of $r->notes

2000-10-30 Thread Matt Sergeant
On Mon, 30 Oct 2000, Todd Finney wrote: > I'm concerned about putting large amounts of data into > $r->notes. Some of our script output can be pretty > heavy. If $r->notes can only take simple strings, how > large of a simple string is it safe to put in it? Is there > a better way to do th

maximum (practical) size of $r->notes

2000-10-29 Thread Todd Finney
This is a follow-up on a question that I asked a couple of months ago. The subject was "executing a cgi from within a handler (templating redux)", dated 8/23/00. The gist of the matter is that we need a handler which will serve html pages ('content files') inside of other html files ('templa