실행시 설정

이 함수의 작동은 php.ini 설정에 영향을 받습니다.

PostgreSQL 설정 옵션
이름 기본값 설정권한 변경점
pgsql.allow_persistent "1" PHP_INI_SYSTEM  
pgsql.max_persistent "-1" PHP_INI_SYSTEM  
pgsql.max_links "-1" PHP_INI_SYSTEM  
pgsql.auto_reset_persistent "0" PHP_INI_SYSTEM PHP 4.2.0부터 사용할 수 있습니다.
pgsql.ignore_notice "0" PHP_INI_ALL PHP 4.3.0부터 사용할 수 있습니다.
pgsql.log_notice "0" PHP_INI_ALL PHP 4.3.0부터 사용할 수 있습니다.
PHP_INI_* 모드에 대한 상세와 정의는 Where a configuration setting may be set를 참고하십시오.

위 설정 지시어에 대한 간단한 설명입니다.

pgsql.allow_persistent boolean

Postgre 지속 접속 허용 여부.

pgsql.max_persistent integer

프로세스 당 Postgre 지속 연결의 최대수.

지속 연결을 포함하여, 프로세스 당 Postgres 연결의 최대수.

pgsql.auto_reset_persistent integer

깨어진 pg_pconnect() 지속 연결의 검출. 약간의 오버헤드가 필요합니다.

pgsql.ignore_notice integer

PostgreSQL 백엔드 경고의 무시 여부.

pgsql.log_notice integer

PostgreSQL 백엔드 경고 메세지의 기록 여부. 경고 메세지를 기록하기 위해서는 PHP 지시어 pgsql.ignore_notice를 off로 설정해야만 합니다.

add a note 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