Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd239dfb

Browse files
committed
Add email.
1 parent7c89a5a commitd239dfb

File tree

1 file changed

+46
-2
lines changed

1 file changed

+46
-2
lines changed

‎doc/TODO.detail/performance

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ From owner-pgsql-hackers@hub.org Tue Oct 19 10:31:10 1999
345345
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
346346
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id KAA29087
347347
for <maillist@candle.pha.pa.us>; Tue, 19 Oct 1999 10:31:08 -0400 (EDT)
348-
Received: from hub.org (hub.org [216.126.84.1]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id KAA27535 for <maillist@candle.pha.pa.us>; Tue, 19 Oct 1999 10:19:47 -0400 (EDT)
348+
Received: from hub.org (hub.org [216.126.84.1]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id KAA27535 for <maillist@candle.pha.pa.us>; Tue, 19 Oct 1999 10:19:47 -0400 (EDT)
349349
Received: from localhost (majordom@localhost)
350350
by hub.org (8.9.3/8.9.3) with SMTP id KAA30328;
351351
Tue, 19 Oct 1999 10:12:10 -0400 (EDT)
@@ -454,7 +454,7 @@ From owner-pgsql-hackers@hub.org Tue Oct 19 21:25:30 1999
454454
Received: from renoir.op.net (root@renoir.op.net [209.152.193.4])
455455
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id VAA28130
456456
for <maillist@candle.pha.pa.us>; Tue, 19 Oct 1999 21:25:26 -0400 (EDT)
457-
Received: from hub.org (hub.org [216.126.84.1]) by renoir.op.net (o1/$Revision: 1.3 $) with ESMTP id VAA10512 for <maillist@candle.pha.pa.us>; Tue, 19 Oct 1999 21:15:28 -0400 (EDT)
457+
Received: from hub.org (hub.org [216.126.84.1]) by renoir.op.net (o1/$Revision: 1.4 $) with ESMTP id VAA10512 for <maillist@candle.pha.pa.us>; Tue, 19 Oct 1999 21:15:28 -0400 (EDT)
458458
Received: from localhost (majordom@localhost)
459459
by hub.org (8.9.3/8.9.3) with SMTP id VAA50745;
460460
Tue, 19 Oct 1999 21:07:23 -0400 (EDT)
@@ -695,3 +695,47 @@ LRU-2 idea and am not pursuing it.
695695
regards, tom lane
696696

697697

698+
From pgsql-hackers-owner+M3455@postgresql.org Fri Jan 19 13:18:12 2001
699+
Received: from mail.postgresql.org (webmail.postgresql.org [216.126.85.28])
700+
by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id NAA02092
701+
for <pgman@candle.pha.pa.us>; Fri, 19 Jan 2001 13:18:12 -0500 (EST)
702+
Received: from mail.postgresql.org (webmail.postgresql.org [216.126.85.28])
703+
by mail.postgresql.org (8.11.1/8.11.1) with SMTP id f0JIFJ037872;
704+
Fri, 19 Jan 2001 13:15:19 -0500 (EST)
705+
(envelope-from pgsql-hackers-owner+M3455@postgresql.org)
706+
Received: from sectorbase2.sectorbase.com ([208.48.122.131])
707+
by mail.postgresql.org (8.11.1/8.11.1) with ESMTP id f0JI7V036780
708+
for <pgsql-hackers@postgreSQL.org>; Fri, 19 Jan 2001 13:07:31 -0500 (EST)
709+
(envelope-from vmikheev@SECTORBASE.COM)
710+
Received: by sectorbase2.sectorbase.com with Internet Mail Service (5.5.2653.19)
711+
id <DG1W4LRZ>; Fri, 19 Jan 2001 09:46:14 -0800
712+
Message-ID: <8F4C99C66D04D4118F580090272A7A234D329F@sectorbase1.sectorbase.com>
713+
From: "Mikheev, Vadim" <vmikheev@SECTORBASE.COM>
714+
To: "'Tom Lane'" <tgl@sss.pgh.pa.us>, Bruce Momjian <pgman@candle.pha.pa.us>
715+
Cc: pgsql-hackers@postgresql.org
716+
Subject: RE: [HACKERS] Possible performance improvement: buffer replacemen
717+
t policy
718+
Date: Fri, 19 Jan 2001 10:07:27 -0800
719+
MIME-Version: 1.0
720+
X-Mailer: Internet Mail Service (5.5.2653.19)
721+
Content-Type: text/plain;
722+
charset="iso-8859-1"
723+
Precedence: bulk
724+
Sender: pgsql-hackers-owner@postgresql.org
725+
Status: OR
726+
727+
> > Tom, did we ever test this? I think we did and found that
728+
> > it was the same or worse, right?
729+
>
730+
> I tried it and didn't see any noticeable improvement on the particular
731+
> test case I was using, so I got discouraged and didn't pursue the idea
732+
> further. I'd like to come back to it someday, though.
733+
734+
I don't know how much useful could be LRU-2 but with WAL we should try
735+
to reuse undirty free buffers first, not dirty ones, just to postpone
736+
writes as long as we can. (BTW, this is what Oracle does.)
737+
So, we probably should put new free dirty buffer just before first
738+
undirty one in LRU.
739+
740+
Vadim
741+

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp