Re: PostgreSQL Function Language Performance: C vs PL/PGSQL

Поиск
Список
Период
Сортировка
Искать
От
Craig James
Тема
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL
Дата
в 14:09:54
Msg-id
4BFD55D5.4040907@emolecules.com
Ответ на
Список
Дерево обсуждения
PostgreSQL Function Language Performance: C vs PL/PGSQL Eliot Gable <egable+pgsql-performance@gmail.com>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Stephen Frost <sfrost@snowman.net>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Eliot Gable <egable+pgsql-performance@gmail.com>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Stephen Frost <sfrost@snowman.net>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Eliot Gable <egable+pgsql-performance@gmail.com>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Stephen Frost <sfrost@snowman.net>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Craig James <craig_james@emolecules.com>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Merlin Moncure <mmoncure@gmail.com>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Matthew Wakeling <matthew@flymine.org>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Stephen Frost <sfrost@snowman.net>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Matthew Wakeling <matthew@flymine.org>
Re: PostgreSQL Function Language Performance: C vs PL/PGSQL Merlin Moncure <mmoncure@gmail.com>
On 5/26/10 9:47 AM, Stephen Frost wrote:
> * Eliot Gable (egable+pgsql-performance@gmail.com) wrote:
>> Since PostgreSQL is written in C, I assume there is no
>> such additional overhead. I assume that the PL/PGSQL implementation at its
>> heart also uses SPI to perform those executions. Is that a fair statement?
>
> Right, but I also wouldn't expect a huge improvment either, unless
> you're calling these queries a ton, or the queries that you're calling
> from the pl/pgsql are pretty short-lived.
>
> Don't get me wrong, C is going to be faster, but it depends on exactly
> what's going on as to if it's going to be an overall improvment of, say,
> 10%, or a 10-fold improvment. :)

Or a 0.1% improvement, which is more likely.  Or that the PL/PGSQL version is even faster than the C version, because if you do any string regexp in your function, Perl has extremely efficient algorithms, probably better than you have time to write in C.

We use Perl extensively and have never had any complaints.  The database activity completely dominates all queries, and the performance of Perl has never even been noticable.

We use a C functions for a few things, and it is a big nuisance.  Every time you upgrade Postgres or your OS, there's a chance the recompile will fail because of changed header files.  Any bugs in your code crash Postgres itself.  We avoid C as much as possible (and I love C, been doing it since 1984).

Craig
В списке pgsql-performance по дате отправления
От: Grzegorz Jaśkiewicz
Дата:
От: tv@fuzzy.cz
Дата:
FAQ