You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I read in the documentation of postgresql that results of query can be sent to the client in BINARY, I guess it should
improve efficiency and could even be simpler (the coding and decoding with string are often catchy).
So it would be nice if pgx whas using BINARY when possible instead of STRING ?
The text was updated successfully, but these errors were encountered:
The complicated thing with binary mode is that it's mostly undocumented ("do whatever libpq does"), so the code will probably be simpler once it's implemented, but it's much harder to implement. There's some discussion of it on #38 (comment)
Hello,
I read in the documentation of postgresql that results of query can be sent to the client in BINARY, I guess it should
improve efficiency and could even be simpler (the coding and decoding with string are often catchy).
So it would be nice if pgx whas using BINARY when possible instead of STRING ?
The text was updated successfully, but these errors were encountered: