Re: PostgreSQL and Linux 2.6 kernel.

From: Greg Stark <gsstark(at)mit(dot)edu>
To: "Joshua D(dot) Drake" <jd(at)commandprompt(dot)com>
Cc: Geoffrey <esoteric(at)3times25(dot)net>, Greg Stark <gsstark(at)MIT(dot)EDU>, Bruno Wolff III <bruno(at)wolff(dot)to>, Simon Riggs <simon(at)2ndquadrant(dot)com>, Josh Berkus <josh(at)agliodbs(dot)com>, pgsql-performance(at)postgresql(dot)org
Subject: Re: PostgreSQL and Linux 2.6 kernel.
Date: 2004-04-16 02:27:20
Message-ID: 87wu4gac8n.fsf@stark.xeocode.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


"Joshua D. Drake" <jd(at)commandprompt(dot)com> writes:

> > while($howmany--) { push @morepgGurus, $pgGuru; }
>
> This is just wrong...

yeah, it would have been much clearer written as:
push @morepgGurus, ($pgGuru)x$howmany;

Or at least the perlish:
for (1..$howmany)
instead of C style while syntax.

Ok. I stop now.

--
greg

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Simon Riggs 2004-04-16 07:24:46 Re: PostgreSQL and Linux 2.6 kernel.
Previous Message Joshua D. Drake 2004-04-16 01:07:34 Re: PostgreSQL and Linux 2.6 kernel.