libpq 默认是可重入和线程安全的。 编译应用程序代码时,您可能需要使用特殊的编译器命令行选项。 有关如何构建启用线程的应用程序的信息,请参阅系统文档,或在 src/Makefile.global 中查找 PTHREAD_CFLAGS 和 PTHREAD_LIBS。 此函数允许查询 libpq 的线程安全状态:libpq is reentrant and thread-safe by default. You might need to use special compiler command-line options when you compile your application code. Refer to your system’s documentation for information about how to build thread-enabled applications, or look in src/Makefile.global for PTHREAD_CFLAGS and PTHREAD_LIBS. This function allows the querying of libpq’s thread-safe status:
PQisthreadsafe函数返回 libpq 库的线程安全状态。如果 libpq 是线程安全的,则返回 1,否则返回 0。

一个线程限制是 没有两个线程试图同时操作同一个 PGconn 对象 。特别是,您不能通过同一个连接对象从不同线程发出并发命令。 (如果您需要运行并发命令,请使用多个连接。)One thread restriction is that no two threads attempt to manipulate the same PGconn object at the same time. In particular, you cannot issue concurrent commands from different threads through the same connection object. (If you need to run concurrent commands, use multiple connections.)

PGresult 对象在创建后通常是只读的,因此可以在线程之间自由传递。但是,如果您使用第 34.12 节或第 34.14 节中描述的任何 PGresult 修改函数,您也可以避免对同一 PGresult 进行并发操作。PGresult objects are normally read-only after creation, and so can be passed around freely between threads. However, if you use any of the PGresult-modifying functions described in Section 34.12 or Section 34.14, it’s up to you to avoid concurrent operations on the same PGresult, too.

不推荐使用的函数 PQrequestCancel 和 PQoidStatus 不是线程安全的,不应在多线程程序中使用。 PQrequestCancel 可以用 PQcancel 代替。 PQoidStatus 可以用 PQoidValue 代替。The deprecated functions PQrequestCancel and PQoidStatus are not thread-safe and should not be used in multithread programs. PQrequestCancel can be replaced by PQcancel. PQoidStatus can be replaced by PQoidValue.

如果您在应用程序中使用 Kerberos(除了在 libpq 内部),您将需要锁定 Kerberos 调用,因为 Kerberos 函数不是线程安全的。请参阅 libpq 源代码中的函数 PQregisterThreadLock,了解在 libpq 和您的应用程序之间进行协作锁定的方法。If you are using Kerberos inside your application (in addition to inside libpq), you will need to do locking around Kerberos calls because Kerberos functions are not thread-safe. See function PQregisterThreadLock in the libpq source code for a way to do cooperative locking between libpq and your application.

原文链接: https://www.postgresql.org/docs/current/libpq-threading.html libpq 默认是可再入的并且是线程安全的。你可能需要使用特殊的编译器命令行选项来编译你的应用代码。参考你的系统文档来了解如何编译启用线程的应用,或者在src/Makefile.global中查找P THREAD _CFLAGS和P THREAD _LIBS。这个函数允许查询 libpq 的线程安全状态: PQisthrea... PostgreSQL 包含大量优异的特性。他们中很大一部分是众所周知的,但也有一些极其好用的特性没有得到广泛的关注。本文主要介绍五个最建议使用的 PostgreSQL 特性。 一、listen与notify PostgreSQL 附带一个简单的发布-订阅通知系统。 可以向正在侦听该主题的所有已连接订户广播特定主题的消息。 消息由Postgres服务器推送到侦听客户端。 不需要轮询,但 数据库 驱动程序应支持... <br />.10 在多线程程序中使用 libpq libpq 的函数是线程安全的,可以在多线程程序中使用 libpq 。但编译 libpq 共享库时,必须使用特殊的选项才能保证生成的 libpq 共享库是线程安全的。 Libpq 提供了一个特殊的函数PQis thread safe,应用程序可以调用这个函数确定自己使用的 libpq 共享库是不是线程安全的。<br /><br /><br />PQis thread safe<br /><br />返回1表示 libpq 共享库是线程安全的,返回0表示 libpq 共享库不是线程安全的. PostgreSQL 是一种运行在Unix和Linux操作系统(在NT平台借助Cygnus也可以运行)平台上的免费的开放源码的关系 数据库 。最早是由美国加州大学伯克利分校开发的,开始只是作为一个演示系统发表,但是随着时间的推移,逐步分发,得到很多实际的应用,才逐步流行起来。现在版本发展到了7.3.3。 1999年获得Linux World杂志的...