Re: refcurosr vs. setof

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: refcurosr vs. setof
Дата
Msg-id 20050419031001.GA75716@winnie.fuhr.org
обсуждение исходный текст
Ответ на refcurosr vs. setof  ("Rüdiger Herrmann" <ruediger.herrmann@gmx.de>)
Список 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 по дате отправления:

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: Foreign key slows down copy/insert
Следующее
От: "Tambet Matiisen"
Дата:
Сообщение: Re: Question on REINDEX