zetarun
zetarun

Reputation: 787

Using ActiveRecord caching library in Heroku

I'm studying how to use caching in Heroku for my Rails app. HTTP cache powered by Varnish is superb and I'll use it in all pages without user info but I also want to use a kind of ActiveRecord caching with Memcached using "high livel" plugins such as cache_fu or cache-money...but it seems that Heroku supports only the memcached gem (http://docs.heroku.com/memcache) and it's a very low level Memcachad API...

Do you have any other solutions?

Thx.

Upvotes: 1

Views: 857

Answers (2)

Joseph Ridgway
Joseph Ridgway

Reputation: 26

Checkout http://github.com/teich/heroku-cache-money. I'm about to do the same.

Upvotes: 1

John Topley
John Topley

Reputation: 115362

The ActiveSupport module has built-in cache store support that can be backed by memcached. This Railscast has the details.

Upvotes: 1

Related Questions