@@ -294,6 +294,7 @@ PHP_INI_BEGIN()
294
294
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 )
295
295
STD_PHP_INI_ENTRY ("memcached.sess_consistent_hashing" , "0" , PHP_INI_ALL , OnUpdateBool , sess_consistent_hashing_enabled , zend_php_memcached_globals , php_memcached_globals )
296
296
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 )
297
298
#endif
298
299
STD_PHP_INI_ENTRY ("memcached.compression_type" , "fastlz" , PHP_INI_ALL , OnUpdateCompressionType , compression_type , zend_php_memcached_globals , php_memcached_globals )
299
300
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
3130
3131
MEMC_G (sess_locked ) = 0 ;
3131
3132
MEMC_G (sess_lock_key ) = NULL ;
3132
3133
MEMC_G (sess_lock_key_len ) = 0 ;
3133
- MEMC_G (sess_number_of_replicas ) = 0 ;
3134
3134
MEMC_G (sess_randomize_replica_read ) = 0 ;
3135
+ MEMC_G (sess_connect_timeout ) = 1000 ;
3135
3136
#endif
3136
3137
MEMC_G (serializer_name ) = NULL ;
3137
3138
MEMC_G (serializer ) = SERIALIZER_DEFAULT ;
0 commit comments