Re: [GENERAL] Performance PLV8 vs PLPGSQL - Mailing list pgsql-general

From Chris Travers
Subject Re: [GENERAL] Performance PLV8 vs PLPGSQL
Date
Msg-id CAKt_Zfs0Sh=kG_B1C0Vx-ye8cVeqmTRgB23skWiauBNr=ajKgQ@mail.gmail.com
Whole thread Raw
In response to Re: [GENERAL] Performance PLV8 vs PLPGSQL  (Tim Uckun <timuckun@gmail.com>)
Responses Re: [GENERAL] Performance PLV8 vs PLPGSQL
List pgsql-general
My recommendation.  See them as tools in a toolkit, not a question of what is best.

For places where you have SQL statements as primary do SQL or PLPGSQL functions.

For places where you are manipulating values (parsing strings for example) use something else (I usually use pl/perl for string manipulation but ymmv).

PLPGSQL works best where you have a large query and some procedurally supporting logic.  It becomes a lot less usable, performant, and maintainable the further you get away from that.

So there is no best just different tools in a toolkit.

pgsql-general by date:

Previous
From: Tim Uckun
Date:
Subject: Re: [GENERAL] Performance PLV8 vs PLPGSQL
Next
From: Pavel Stehule
Date:
Subject: Re: [GENERAL] Performance PLV8 vs PLPGSQL