27 lines
899 B
INI
27 lines
899 B
INI
[PostgreSQL]
|
|
; Allow or prevent persistent links.
|
|
; http://php.net/pgsql.allow-persistent
|
|
pgsql.allow_persistent = On
|
|
|
|
; Detect broken persistent links always with pg_pconnect().
|
|
; Auto reset feature requires a little overheads.
|
|
; http://php.net/pgsql.auto-reset-persistent
|
|
pgsql.auto_reset_persistent = Off
|
|
|
|
; Maximum number of persistent links. -1 means no limit.
|
|
; http://php.net/pgsql.max-persistent
|
|
pgsql.max_persistent = -1
|
|
|
|
; Maximum number of links (persistent+non persistent). -1 means no limit.
|
|
; http://php.net/pgsql.max-links
|
|
pgsql.max_links = -1
|
|
|
|
; Ignore PostgreSQL backends Notice message or not.
|
|
; Notice message logging require a little overheads.
|
|
; http://php.net/pgsql.ignore-notice
|
|
pgsql.ignore_notice = 0
|
|
|
|
; Log PostgreSQL backends Notice message or not.
|
|
; Unless pgsql.ignore_notice=0, module cannot log notice message.
|
|
; http://php.net/pgsql.log-notice
|
|
pgsql.log_notice = 0
|