We are running an EC2 instance just for memcached use. I would like to eliminate this instance and go to elasticache but want to make sure this is doable. I would think it is a point at the server and go, but want to make sure.
Mark
This is a discussion on Has anyone implemented AWS Elasticache with vbseo within the General Discussion forums, part of the vBSEO SEO Plugin category; We are running an EC2 instance just for memcached use. I would like to eliminate this instance and go to ...
We are running an EC2 instance just for memcached use. I would like to eliminate this instance and go to elasticache but want to make sure this is doable. I would think it is a point at the server and go, but want to make sure.
Mark
My Sites:
www.hotcouponworld.com
www.organicgrocerydeals.com
www.momsinthetrenches.com (in development)
Yes, it is pretty much point and go. Here are the settings in my config.php for memcached.
Also added the following in the control panel.PHP Code:$i=1;
$config['Misc']['memcacheserver'][$i] = 'xxx.cache.amazonaws.com';
$config['Misc']['memcacheport'][$i] = 11211;
$config['Misc']['memcachepersistent'][$i] = true;
$config['Misc']['memcacheweight'][$i] = 2;
$config['Misc']['memcachetimeout'][$i] = 1;
$config['Misc']['memcacheretry_interval'][$i] = 15;
$i++;
$config['Misc']['memcacheserver'][$i] = '127.0.0.1';
$config['Misc']['memcacheport'][$i] = 11211;
$config['Misc']['memcachepersistent'][$i] = true;
$config['Misc']['memcacheweight'][$i] = 1;
$config['Misc']['memcachetimeout'][$i] = 1;
$config['Misc']['memcacheretry_interval'][$i] = 15;
xxx.cache.amazonaws.com:11211,1
Working great!!
Mark
My Sites:
www.hotcouponworld.com
www.organicgrocerydeals.com
www.momsinthetrenches.com (in development)