PHP 8.1.28 Released!

Çalışma Anı Yapılandırması

Bu işlevlerin davranışı php.ini içindeki ayarlardan etkilenir.

PostgreSQL configuration options
İsim Öntanımlı Değişlik Yeri Sürüm Bilgisi
pgsql.allow_persistent "1" INI_SYSTEM  
pgsql.max_persistent "-1" INI_SYSTEM  
pgsql.max_links "-1" INI_SYSTEM  
pgsql.auto_reset_persistent "0" INI_SYSTEM  
pgsql.ignore_notice "0" INI_ALL  
pgsql.log_notice "0" INI_ALL  
INI_* kiplerinin tanımları ve ayrıntılı açıklamaları Yapılandırma ayarlarının yeri bölümünde bulunabilir.

Yapılandırma yönergelerinin kısa açıklamalarını aşağıda bulabilirsiniz.

pgsql.allow_persistent bool

Whether to allow persistent Postgres connections.

pgsql.max_persistent int

The maximum number of persistent Postgres connections per process.

The maximum number of Postgres connections per process, including persistent connections.

pgsql.auto_reset_persistent int

Detect broken persistent links with pg_pconnect(). Needs a little overhead.

pgsql.ignore_notice int

Whether or not to ignore PostgreSQL backend notices.

pgsql.log_notice int

Whether or not to log PostgreSQL backends notice messages. The PHP directive pgsql.ignore_notice must be off in order to log notice messages.

add a note

User Contributed Notes 1 note

up
-1
ewl at compressedtime dot com
10 years ago
Does "per process" mean the entire server process? or each process id (for forked processes)?
To Top