I am currently using Heroku's Memcached in a Rails 3 app and would like to move over to Elasticache because the pricing is much more favorable. Is this possible? Is the configuration relatively straightforward? Is there anything that I should be aware of as regards the performance?
|
Note: While this does work, @btucker pointed out that it allows any Heroku-hosted app to access your ElastiCache cluster. I do not recommend using this solution. Yes you can. The setup is similar to the guide Heroku has on Amazon RDS. The steps that differ go like this:
After that, follow the Memcache Rails setup, and you're set. |
|||||||
|
|
(Full disclaimer, I work for the company below). There is another memcache provider on Heroku that is significantly cheaper than the membase provided one. It's called MemCachier, addon home page is here. It's comparable in price to ElasticCache depending on your cache size and if you use reserved instances or not (at the very large cache sizes ElatiCache is cheaper). Please reach out to me if you need any help even if you go with ElastiCache. |
|||||
|
|
It's worth noting that while @ssorallen's answer above will work as described, it also allows ANY heroku-deployed app to access your memcached server. So if you store anything at all confidential, or you're concerned about other people making use of your ElatiCache cluster, don't do it. In the context of RDS you have the access control built into the database, but memcached has no such authentication supported by ElastiCache. So opening up the security group to all of Heroku is a pretty big risk. |
|||||||||||
|