a cool idea. We'd have to
benchmark it. :-)
Also is '&&' faster than 'and'?
Mark
From: sergiy.borod...@gmail.com [mailto:sergiy.borod...@gmail.com] On Behalf Of
Sergiy Borodych
Sent: Thursday, June 26, 2014 2:14 AM
To: Joshua Narins
Cc: Mark Hedges; modperl@
Of
Sergiy Borodych
Sent: Thursday, June 26, 2014 2:14 AM
To: Joshua Narins
Cc: Mark Hedges; modperl@perl.apache.org
Subject: Re: bug in trunk in Apache::Reload test
Hello,
another question:
why not just
my $args = $r->args;
if ( $args and $args eq 'last' ) {
(without defined
On Thu, Jun 26, 2014 at 03:52:33AM -0400, Joshua Narins wrote:
> On Mon, Jun 23, 2014 at 06:21:37PM +, Mark Hedges wrote:
> > Perl 5.20.0, Apache 2.2.27, APR 1.5.1, APR-util 1.5.3, mod_perl trunk.
> >
> > 2014-06-23 11:16:32 Mon $ svn diff t/lib/Apache2/TestReload.pm
> > Index: t/lib/Apache2/
Hello,
another question:
why not just
my $args = $r->args;
if ( $args and $args eq 'last' ) {
(without defined)
or even
if ( my $args = $r->args and $args eq 'last' ) {
:)
2014-06-26 10:52 GMT+03:00 Joshua Narins :
> On Mon, Jun 23, 2014 at 06:21:37PM +, Mark Hedges wrote:
> > Perl 5
On Mon, Jun 23, 2014 at 06:21:37PM +, Mark Hedges wrote:
> Perl 5.20.0, Apache 2.2.27, APR 1.5.1, APR-util 1.5.3, mod_perl trunk.
>
> 2014-06-23 11:16:32 Mon $ svn diff t/lib/Apache2/TestReload.pm
> Index: t/lib/Apache2/TestReload.pm
> =