Results 1 to 2 of 2

Has anyone implemented AWS Elasticache with vbseo

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 ...

  1. #1
    Member
    Real Name
    Mark Parrish
    Join Date
    Jul 2007
    Location
    Portland, OR
    Posts
    45
    Liked
    0 times

    Has anyone implemented AWS Elasticache with vbseo

    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

  2. #2
    Member
    Real Name
    Mark Parrish
    Join Date
    Jul 2007
    Location
    Portland, OR
    Posts
    45
    Liked
    0 times
    Yes, it is pretty much point and go. Here are the settings in my config.php for memcached.
    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
    Also added the following in the control panel.
    xxx.cache.amazonaws.com:11211,1

    Working great!!
    Mark

Similar Threads

  1. Relevant replacements implemented but I have a strange problem
    By Norkus in forum Relevant Replacements
    Replies: 19
    Last Post: 07-06-2009, 08:14 PM
  2. Replies: 1
    Last Post: 10-26-2008, 12:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •