multiple memcached servers
-
I’d like to use 2 or more memcached server, but seem that your plugin don’t support this.
I use the php-pecl-memcached extension and the 0.4.1 version of your plugin.
I patch “wp-content/plugins/wp-ffpc/wp-ffpc-common.php” al line 76
From:
$wp_ffpc_backend->addServer( $wp_ffpc_config['host'], $wp_ffpc_config['port'] );
To:
$_list = explode(',',$wp_ffpc_config['host']); foreach($_list as $_server){ $wp_ffpc_backend->addServer( $_server , $wp_ffpc_config['port'] ); }
May be you prefer a different approach.
Waiting for your feedback.
Ivan
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘multiple memcached servers’ is closed to new replies.