Re: [PERFORMANCE] Stored Procedures

From: Rikard Pavelic <rikard(dot)pavelic(at)zg(dot)htnet(dot)hr>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: [PERFORMANCE] Stored Procedures
Date: 2006-01-20 19:38:23
Message-ID: 43D13C2F.1030203@zg.htnet.hr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Jim C. Nasby wrote:
> My college professor said it, it must be true! ;P
>
>
The famous joke ;)
> My understanding is that in plpgsql, 'bare' queries get prepared and act
> like prepared statements. IE:
>
> SELECT INTO variable
> field
> FROM table
> WHERE condition = true
> ;
>
>
Unfortunately I don't know enough about PostgreSQL, but from responses
I've been reading I've
come to that conclusion.
> Ok, so post some numbers then. It might be interesting to look at the
> cost of preparing a statement, although AFAIK that does not store the
> query plan anywhere.
>
> In most databases, query planning seems to be a pretty expensive
> operation. My experience is that that isn't the case with PostgreSQL.
>

I didn't think about storing query plan anywhere on the disk, rather
keep them in memory pool.
It would be great if we had an option to use prepare statement for
stored procedure so it
would prepare it self the first time it's called and remained prepared
until server shutdown or
memory pool overflow.

This would solve problems with prepare which is per session, so for
prepared function to be
optimal one must use same connection.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Martijn van Oosterhout 2006-01-20 20:10:36 Re: [GENERAL] Creation of tsearch2 index is very slow
Previous Message Tom Lane 2006-01-20 19:14:29 Re: [GENERAL] Creation of tsearch2 index is very slow