Elmor
Elmor

Reputation: 4895

rails 3 caching - is there a gem for that?

Good day! Currently i'm thinking about implementing caching on a website. I've read an article about it http://guides.rubyonrails.org/caching_with_rails.html What i'm wondering is there a gem for caching rails app ? Yes, rails provides many ways to do that, but what i'm interested about is there a gem or something like that?

Upvotes: 0

Views: 868

Answers (3)

marcamillion
marcamillion

Reputation: 33755

DHH recently spoke about a new approach to caching ("russian doll caching") that 37Signals used in Basecamp Next.

They even released a gem for it, which you can see here.

To see the video where he is explaining it and showing off Basecamp next, watch it here.

Upvotes: 2

Mohanraj
Mohanraj

Reputation: 4200

There is a lot of gems avaialble for implementing cache mechanism in rails, the lists are memcached, cache, memcache-client. For your reference follow the rubygems.org, then search gems like cache.

Upvotes: 1

rb512
rb512

Reputation: 6948

Here are your options :
render-cachce
rails-settings-cached

Upvotes: 1

Related Questions