*** pgsql/doc/src/sgml/libpq.sgml 2009/04/27 16:27:36 1.288 --- pgsql/doc/src/sgml/libpq.sgml 2009/05/28 20:02:10 1.289 *************** *** 1,4 **** ! <application>libpq</application> - C Library --- 1,4 ---- ! <application>libpq</application> - C Library *************** *** 64,69 **** --- 64,79 ---- whether a connection was successfully made before queries are sent via the connection object. + + + On Unix, forking a process with open libpq connections can lead to + unpredictable results because the parent and child processes share + the same sockets and operating system resources. For this reason, + such usage is not recommended, though doing an exec from + the child process to load a new executable is safe. + + + On Windows, there is a way to improve performance if a single