Re: When should parameters be passed as text v. binary?

From: Justin <zzzzz(dot)graf(at)gmail(dot)com>
To: Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk>
Cc: Paula Kirsch <pl(dot)kirsch(at)gmail(dot)com>, "pgsql general (pgsql-general(at)postgresql(dot)org)" <pgsql-general(at)postgresql(dot)org>
Subject: Re: When should parameters be passed as text v. binary?
Date: 2020-01-04 20:30:00
Message-ID: CALL-XeP+hK-vPwnXL4zM-GXTcOSJpkN2cy0BHsXtmsrd0mJP8Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

As noted by Adrian what is the USE CASE

As a general rule one wants to use the format the data is being stored in.
every time data is cast to another type its going to eat those all so
precious CPU cycles. (all the horror of electrons turned into infrared
beams)

converting Bytea type to a string encoded in Base64 adds 30% overhead.
converting an integer tor ASCII can add allot of overhead.

The answer is it depends on the USE CASE if casting adds any benefit. my
gut tells me it will not add any benefiet

On Sat, Jan 4, 2020 at 1:59 PM Andrew Gierth <andrew(at)tao11(dot)riddles(dot)org(dot)uk>
wrote:

> >>>>> "Paula" == Paula Kirsch <pl(dot)kirsch(at)gmail(dot)com> writes:
>
> Paula> I'm just trying to understand the trade-offs between sending
> Paula> everything always as text, all integer parameters as binary,
> Paula> floats as binary, etc.
>
> For passing data from client to server, there's no particular reason not
> to use the binary format for any data type that you understand (and
> where you're passing the data type oid explicitly in the query, rather
> than just leaving it as unknown).
>
> For results, things are harder, because libpq is currently
> all-or-nothing about result type formats, and if you start using
> extension types then not all of them even _have_ a binary format. And to
> decode a binary result you need to know the type, and have code to
> handle every specific type's binary format.
>
> --
> Andrew (irc:RhodiumToad)
>
>
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2020-01-04 20:42:00 Re: When should parameters be passed as text v. binary?
Previous Message Andrew Gierth 2020-01-04 18:59:06 Re: When should parameters be passed as text v. binary?