Searched refs:max_persistent (Results 1 – 25 of 26) sorted by relevance
12
/PHP-7.0/ext/oci8/tests/ |
H A D | ini_1.phpt | 13 oci8.max_persistent = 111 26 echo 'oci8.max_persistent = ' . ini_get('oci8.max_persistent') . "\n"; 38 var_dump(ini_set('oci8.max_persistent', '999')); 39 echo 'oci8.max_persistent = ' . ini_get('oci8.max_persistent') . "\n"; 61 oci8.max_persistent = 111 73 oci8.max_persistent = 111
|
/PHP-7.0/ext/mysqli/tests/ |
H A D | bug54674.phpt | 11 mysqli.max_persistent = 0
|
H A D | bug54221.phpt | 11 mysqli.max_persistent = 0
|
H A D | bug51605.phpt | 11 mysqli.max_persistent = 0
|
H A D | bug49442.phpt | 22 mysqli.max_persistent=1 70 …sider it as a 'persistent' connection in a user sense, ext/mysqli will not appy max_persistent etc.
|
H A D | mysqli_pconn_max_links.phpt | 44 mysqli.max_persistent=2 180 if ($num_plinks > (int)ini_get('mysqli.max_persistent')) 181 …printf("[017] mysqli.max_persistent=%d allows %d open connections!\n", ini_get('mysqli.max_persist…
|
H A D | mysqli_phpinfo.phpt | 62 'mysqli.allow_persistent', 'mysqli.max_persistent'
|
H A D | mysqli_pconn_disabled.phpt | 13 mysqli.max_persistent=2
|
H A D | mysqli_pconn_twice.phpt | 12 mysqli.max_persistent=-1
|
H A D | mysqli_pconn_limits.phpt | 12 mysqli.max_persistent=-1
|
H A D | mysqli_pconn_reuse.phpt | 13 mysqli.max_persistent=2
|
H A D | mysqli_pconn_kill.phpt | 12 mysqli.max_persistent=2
|
H A D | mysqli_real_connect_pconn.phpt | 14 mysqli.max_persistent=10
|
H A D | mysqli_pconn_conn_multiple.phpt | 11 mysqli.max_persistent=-1
|
/PHP-7.0/ext/odbc/ |
H A D | php_odbc_includes.h | 264 zend_long max_persistent; variable
|
H A D | php_odbc.c | 689 max_persistent, zend_odbc_globals, odbc_globals, display_link_nums) 2625 if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) { in odbc_do_connect()
|
/PHP-7.0/ext/pdo/ |
H A D | TODO | 21 pdo.max_persistent
|
/PHP-7.0/ext/mysqli/ |
H A D | php_mysqli_structs.h | 326 zend_long max_persistent; variable
|
H A D | mysqli_nonapi.c | 213 if (persistent && MyG(max_persistent) != -1 && 214 (MyG(num_active_persistent) + MyG(num_inactive_persistent))>= MyG(max_persistent))
|
H A D | mysqli.c | 513 …Y_EX("mysqli.max_persistent", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_persistent, zend_mysqli_… 541 mysqli_globals->max_persistent = -1; in PHP_INI_END()
|
/PHP-7.0/ext/pgsql/ |
H A D | php_pgsql.h | 316 zend_long max_links,max_persistent;
|
/PHP-7.0/ext/oci8/ |
H A D | php_oci8_int.h | 514 zend_long max_persistent; /* maximum number of persistent connections per process */ variable
|
H A D | oci8.c | 908 …STD_PHP_INI_ENTRY( "oci8.max_persistent", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_persistent, … 1947 if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) { in php_oci_do_connect_ex() 1951 if (OCI_G(max_persistent) != -1 && OCI_G(num_persistent) >= OCI_G(max_persistent)) { in php_oci_do_connect_ex()
|
/PHP-7.0/ |
H A D | php.ini-development | 1073 odbc.max_persistent = -1 1097 ibase.max_persistent = -1 1127 mysqli.max_persistent = -1 1228 ;oci8.max_persistent = -1 1283 pgsql.max_persistent = -1
|
H A D | php.ini-production | 1073 odbc.max_persistent = -1 1097 ibase.max_persistent = -1 1127 mysqli.max_persistent = -1 1228 ;oci8.max_persistent = -1 1283 pgsql.max_persistent = -1
|
Completed in 56 milliseconds
12