jackc / pgx

PostgreSQL driver and toolkit for Go
MIT License
10.39k stars 824 forks source link

Is pgx blocking? #803

Closed onthegit closed 4 years ago

onthegit commented 4 years ago

Hello,

is pgx blocking in nature (e.g when querying the db), does it block the thread on which the goroutine is?

jackc commented 4 years ago

A query involves network I/O and network I/O is blocking in Go from the perspective of the calling goroutine.

onthegit commented 4 years ago

Can the following library be used instead of the default net library in go?

https://github.com/tidwall/evio

jackc commented 4 years ago

No.