@@ -294,6 +294,7 @@ PHP_INI_BEGIN()
294294 STD_PHP_INI_ENTRY ("memcached.sess_randomize_replica_read" , "0" , PHP_INI_ALL , OnUpdateBool , sess_randomize_replica_read , zend_php_memcached_globals , php_memcached_globals )
295295 STD_PHP_INI_ENTRY ("memcached.sess_consistent_hashing" , "0" , PHP_INI_ALL , OnUpdateBool , sess_consistent_hashing_enabled , zend_php_memcached_globals , php_memcached_globals )
296296 STD_PHP_INI_ENTRY ("memcached.sess_remove_failed" , "0" , PHP_INI_ALL , OnUpdateBool , sess_remove_failed_enabled , zend_php_memcached_globals , php_memcached_globals )
297+ STD_PHP_INI_ENTRY ("memcached.sess_connect_timeout" , "1000" , PHP_INI_ALL , OnUpdateLong , sess_connect_timeout , zend_php_memcached_globals , php_memcached_globals )
297298#endif
298299 STD_PHP_INI_ENTRY ("memcached.compression_type" , "fastlz" , PHP_INI_ALL , OnUpdateCompressionType , compression_type , zend_php_memcached_globals , php_memcached_globals )
299300 STD_PHP_INI_ENTRY ("memcached.compression_factor" , "1.3" , PHP_INI_ALL , OnUpdateReal , compression_factor , zend_php_memcached_globals , php_memcached_globals )
@@ -3130,8 +3131,8 @@ static void php_memc_init_globals(zend_php_memcached_globals *php_memcached_glob
31303131 MEMC_G (sess_locked ) = 0 ;
31313132 MEMC_G (sess_lock_key ) = NULL ;
31323133 MEMC_G (sess_lock_key_len ) = 0 ;
3133- MEMC_G (sess_number_of_replicas ) = 0 ;
31343134 MEMC_G (sess_randomize_replica_read ) = 0 ;
3135+ MEMC_G (sess_connect_timeout ) = 1000 ;
31353136#endif
31363137 MEMC_G (serializer_name ) = NULL ;
31373138 MEMC_G (serializer ) = SERIALIZER_DEFAULT ;
0 commit comments