ActiveRecord Caching
Adds "Advanced Caching" to ActiveRecord::Base as described in Adam Hawkins' blog, Fast JSON APIs.
Installation
Add this line to your application's Gemfile:
gem 'active_record_caching'
And then execute:
$ bundle
Or install it yourself as:
$ gem install active_record_caching
Usage
Index controller actions will support #stale?
class ResourceController < ApplicationController
responds_to :json
def index
# uses the new #cache_key method defined on ActiveRecord::Base to
# set the etag
if stale? collection do
# Use cached JSON from individual hashes to render a collection
respond_with collection
end
end
endContributing
- Fork it ( https://github.com/[my-github-username]/./fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request