Re: Performance (was: The New Slashdot Setup (includes MySql server)) - Mailing list pgsql-hackers

From Chris
Subject Re: Performance (was: The New Slashdot Setup (includes MySql server))
Date
Msg-id 39259BEC.3777E935@bitmead.com
Whole thread Raw
In response to Re: The New Slashdot Setup (includes MySql server)  (The Hermit Hacker <scrappy@hub.org>)
Responses Re: Performance (was: The New Slashdot Setup (includes MySql server))  ("Matthias Urlichs" <smurf@noris.net>)
List pgsql-hackers
> > > That being said, the standard MySQL benchmark _still_ is 30 times
> > > faster for MySQL 3.23 than on PostgreSQL 7.0 (with fsync turned off,
> > > _and_ nonstandard speed-up PostgreSQL features like VACUUM enabled,

VACUUM is not a speed-up feature, it's a slow-down feature. It reclaims
space and that takes time. It does update system statistics which can
help performance if done after a data load or perhaps once a day.

But "sprinkling the code" with vacuum sounds like a big performance
killer. Hope you are not counting vacuum as part of your 1000 read()
calls.


pgsql-hackers by date:

Previous
From: "Matthias Urlichs"
Date:
Subject: Re: Performance (was: The New Slashdot Setup (includes MySql server))
Next
From: "Hiroshi Inoue"
Date:
Subject: RE: Re: Heaps of read() syscalls by the postmaster