pgsql: Further hacking on performance of COPY OUT. - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Further hacking on performance of COPY OUT.
Date
Msg-id 20060526225002.3EF559FA2CB@postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Further hacking on performance of COPY OUT.  It seems that fwrite()'s
per-call overhead is quite significant, at least on Linux: whatever
it's doing is more than just shoving the bytes into a buffer.  Buffering
the data so we can call fwrite() just once per row seems to be a win.

Modified Files:
--------------
    pgsql/src/backend/commands:
        copy.c (r1.265 -> r1.266)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/copy.c.diff?r1=1.265&r2=1.266)

pgsql-committers by date:

Previous
From: cmaj@pgfoundry.org (User Cmaj)
Date:
Subject: pgaccess - pgaccess: allow dropping a rule from the main window
Next
From: momjian@postgresql.org (Bruce Momjian)
Date:
Subject: pgsql: Use E'' strings internally only when standard_conforming_strings