Re: refcurosr vs. setof - Mailing list pgsql-performance

From Michael Fuhr
Subject Re: refcurosr vs. setof
Date
Msg-id 20050419031001.GA75716@winnie.fuhr.org
Whole thread Raw
In response to refcurosr vs. setof  ("Rüdiger Herrmann" <ruediger.herrmann@gmx.de>)
List pgsql-performance
On Sun, Apr 17, 2005 at 10:05:29PM +0200, Rüdiger Herrmann wrote:
>
> I need to write several PL/pgSQL functions all returning a "result set" wich
> can be obtained by a single SELECT statement.
> For now the functions are called by a Java application.
> Both REFCURSOR and SETOF serve my purpose, but I was wondering if there is a
> perfonance difference between the two. The result set can become quite
> large.

Here's an excerpt from the "Control Structures" section of the
PL/pgSQL documentation:

    The current implementation of RETURN NEXT for PL/pgSQL stores
    the entire result set before returning from the function, as
    discussed above.  That means that if a PL/pgSQL function produces
    a very large result set, performance may be poor: data will be
    written to disk to avoid memory exhaustion, but the function
    itself will not return until the entire result set has been
    generated....Currently, the point at which data begins being
    written to disk is controlled by the work_mem configuration
    variable.

You might want to test both ways in typical and worst-case scenarios
and see how each performs.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

pgsql-performance by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: Foreign key slows down copy/insert
Next
From: "Tambet Matiisen"
Date:
Subject: Re: Question on REINDEX