|
|
array( $module, 'redis.verify_tls_certificates' ),
'label' => Util_ConfigLabel::get( 'redis.verify_tls_certificates' ),
'control' => 'checkbox',
'checkbox_label' => Util_ConfigLabel::get( 'redis.verify_tls_certificates' ),
'description' => __( 'Verify the server\'s certificate when connecting via TLS.', 'w3-total-cache' ),
)
);
Util_Ui::config_item(
array(
'key' => array( $module, 'redis.persistent' ),
'label' => __( 'Use persistent connection:', 'w3-total-cache' ),
'control' => 'checkbox',
'checkbox_label' => Util_ConfigLabel::get( 'redis.persistent' ),
'description' => __( 'Using persistent connection doesn\'t reinitialize memcached driver on each request', 'w3-total-cache' ),
)
);
Util_Ui::config_item(
array(
'key' => array( $module, 'redis.timeout' ),
'label' => Util_ConfigLabel::get( 'redis.timeout' ),
'control' => 'textbox',
'textbox_type' => 'number',
'description' => __( 'In seconds', 'w3-total-cache' ),
)
);
Util_Ui::config_item(
array(
'key' => array( $module, 'redis.retry_interval' ),
'label' => Util_ConfigLabel::get( 'redis.retry_interval' ),
'control' => 'textbox',
'textbox_type' => 'number',
'description' => __( 'In miliseconds', 'w3-total-cache' ),
)
);
if ( version_compare( phpversion( 'redis' ), '5', '>=' ) ) {
// PHP Redis 5 supports the read_timeout setting.
Util_Ui::config_item(
array(
'key' => array( $module, 'redis.read_timeout' ),
'label' => Util_ConfigLabel::get( 'redis.read_timeout' ),
'control' => 'textbox',
'textbox_type' => 'number',
'description' => __( 'In seconds', 'w3-total-cache' ),
)
);
}
Util_Ui::config_item(
array(
'key' => array( $module, 'redis.dbid' ),
'label' => Util_ConfigLabel::get( 'redis.dbid' ),
'control' => 'textbox',
'description' => __( 'Database ID to use', 'w3-total-cache' ),
)
);
Util_Ui::config_item(
array(
'key' => array( $module, 'redis.password' ),
'label' => Util_ConfigLabel::get( 'redis.password' ),
'control' => 'textbox',
'description' => __( 'Specify redis password', 'w3-total-cache' ),
)
);