HTML template for MP2

2020-12-29 Thread Matthias Peng
Currently my mp2 handler outputs the content just for an JSON API, which behaves well. If I want mp2 to output a full HTML page, what's the suggested template for this? Thank you

Re: Confused about two development utils [EXT]

2020-12-26 Thread Matthias Peng
chines may have (at the last count a >> year ago we had over >> > 30 PBytes of storage on side – and a large amount of offsite backup. >> > >> > We would also stretch the amount of power we can get from the >> national grid to power >> >

Re: Confused about two development utils [EXT]

2020-12-23 Thread Matthias Peng
Today memory is not serious problem, each of our server has 64GB memory. > Forgot to add - so our FCGI servers need a lot (and I mean a lot) more > memory than the mod_perl servers to serve the same level of content (just > in case memory blows up with FCGI backends) > > -Original Message

Re: Confused about two development utils

2020-12-22 Thread Matthias Peng
. >> >> DNS lookup would usually be an expensive process and you are supposed to >> be nice to other services so cache it for the TTL of the PTR record. >> >> On Tue, Dec 22, 2020 at 6:44 PM Matthias Peng >> wrote: >> >>> I am a newbie to mp deve

Re: unsubscribe

2020-12-22 Thread Matthias Peng
please send an empty email to: modperl-unsubscr...@perl.apache.org to unsubscribe yourself from the list. On Tue, Dec 22, 2020 at 11:09 PM jbiskofski wrote: > unsubscribe >

Re: Confused about two development utils

2020-12-22 Thread Matthias Peng
ery($ip, 'PTR'); if ($reply) { for my $rr ($reply->answer) { return $rr->rdstring; # we need only one } } return; } 1; Can anyone give your review? Thanks in advance. Matthias On Tue, Dec 22, 2020 at 1:49 PM Matthia

Re: Confused about two development utils

2020-12-22 Thread Matthias Peng
Can I guess mod_perl is the upgraded version of apreq? Thanks Andre. > On 22.12.2020 06:49, Matthias Peng wrote: > > Hello > > > > I am developing a simple mp2 application. > > I looked for the installation for mp2 utils, and found this two: > > > > liba

Confused about two development utils

2020-12-21 Thread Matthias Peng
Hello I am developing a simple mp2 application. I looked for the installation for mp2 utils, and found this two: libapache2-mod-perl2 libapache2-mod-apreq2 what're their relations? Should I install both, or only the first one? Thanks.