pgsql: Replace the KnownAssignedXids hash table with a sorted-array data - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Replace the KnownAssignedXids hash table with a sorted-array data
Date
Msg-id 20100428000905.548927541D0@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Replace the KnownAssignedXids hash table with a sorted-array data structure,
and be more tense about the locking requirements for it, to improve performance
in Hot Standby mode.  In passing fix a few bugs and improve a number of
comments in the existing HS code.

Simon Riggs, with some editorialization by Tom

Modified Files:
--------------
    pgsql/src/backend/access/transam:
        twophase.c (r1.60 -> r1.61)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/twophase.c?r1=1.60&r2=1.61)
    pgsql/src/backend/storage/ipc:
        procarray.c (r1.66 -> r1.67)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/ipc/procarray.c?r1=1.66&r2=1.67)

pgsql-committers by date:

Previous
From: alvherre@postgresql.org (Alvaro Herrera)
Date:
Subject: pgsql: Reformat code examples in plpgsql docs for better readability in
Next
From: itagaki@postgresql.org (Takahiro Itagaki)
Date:
Subject: pgsql: Add CP949 as an alias for UHC encoding.