Re: [PERFORM] Query much slower when run from postgres function

Поиск
Список
Период
Сортировка
От Oliver Jowett
Тема Re: [PERFORM] Query much slower when run from postgres function
Дата
Msg-id 49B62750.6090103@opencloud.com
обсуждение исходный текст
Ответ на Re: [PERFORM] Query much slower when run from postgres function  (Guillaume Cottenceau <gc@mnc.ch>)
Ответы Re: [PERFORM] Query much slower when run from postgres function  (Guillaume Cottenceau <gc@mnc.ch>)
Список pgsql-jdbc
Guillaume Cottenceau wrote:
> Oliver Jowett <oliver 'at' opencloud.com> writes:
>
>> The idea behind the threshold is that if a PreparedStatement object is
>> reused, that's a fairly good indication that the application wants to
>> run the same query many times with different parameters (since it's
>> going to the trouble of preserving the statement object for reuse). But
>
> Or it may just need the safeness of driver/database parameter
> "interpolation", to get a "free" efficient safeguard against SQL
> injection.

In which case, the application usually throws the PreparedStatement
object away after executing it once, and the threshold is never reached.
As I said, the application has to do extra work to preserve exactly the
same PreparedStatement object for reuse before the threshold applies, at
which point it's reasonable to assume that it could be a
performance-sensitive query that would benefit from preserving the query
plan and avoiding parse/plan costs on every execution.

It's just a heuristic because there *is* a tradeoff and many/most
applications are not going to be customized specifically to know about
that tradeoff. And it's configurable because the tradeoff is not the
same in every case.

Do you have a suggestion for a better way to decide when to use a named
statement?

-O

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

Предыдущее
От: Guillaume Cottenceau
Дата:
Сообщение: Re: [PERFORM] Query much slower when run from postgres function
Следующее
От: Guillaume Cottenceau
Дата:
Сообщение: Re: [PERFORM] Query much slower when run from postgres function