Re: turn off cache option

Поиск
Список
Период
Сортировка
От Ragnar
Тема Re: turn off cache option
Дата
Msg-id 1175816012.32550.32.camel@localhost.localdomain
обсуждение исходный текст
Ответ на turn off cache option  ("jungmin shin" <jungmin.shin@gmail.com>)
Список pgsql-general
On fim, 2007-04-05 at 16:31 -0400, jungmin shin wrote:
>
> I'm executing a query invoking a UDF.
> It looks that Postgres use a cache for executing UDFs.

Postgresql is not using a cache specially for executing
UDFs, apart from only compiling the function once for each
session.

>
> select a()
> Excution time of above statement is different each time.
> What is happening inside of the Postgres when I invoke a UDF in a
> query?
>
> It is taking 200ms or 11688ms .

Postgresql relies on the filesystem and operating
system to cache fisk buffers efficiently, so you are probably
just seeing the effects of that, assuming that your function is
doing the same thing each time.

>
> If a cache is used for this execution , can I turn off the cache
> option?

why would you want to do that?

gnari



В списке pgsql-general по дате отправления:

Предыдущее
От: Listmail
Дата:
Сообщение: Re: Anyone know where I can get an 8.2.3 binary for ubuntu?
Следующее
От: William Garrison
Дата:
Сообщение: Re: Storing blobs in PG DB