Reputation: 4895
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
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
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