Re: Array interface - Mailing list pgsql-performance

From Mark Kirkwood
Subject Re: Array interface
Date
Msg-id 4CDA690F.1030408@catalyst.net.nz
Whole thread Raw
In response to Re: Array interface  (Mark Kirkwood <mark.kirkwood@catalyst.net.nz>)
List pgsql-performance
On 10/11/10 22:10, Mark Kirkwood wrote:
>
> What might also be interesting is doing each INSERT with an array-load
> of bind variables appended to the VALUES clause - as this will only do
> 1 insert call per "array" of values.

This is probably more like what you were expecting:

rows    num values tuples(i.e array size) elapsed
1000000                 1                     106
1000000                10                      14
1000000               100                      13
1000000              1000                      14

I didn't try to use PREPARE + EXECUTE here, just did "do" with the
INSERT + array size number of VALUES tuples (execute could well be
faster). The obvious difference here is we only do rows/(array size)
number of insert calls.

Cheers

Mark


Attachment

pgsql-performance by date:

Previous
From: Mark Kirkwood
Date:
Subject: Re: Array interface
Next
From: "静安寺"
Date:
Subject: Why dose the planner select one bad scan plan.