Build Status

SuperCache

SuperCache for rails is a caching middleware inspired by the "SuperCache" plugin for WordPress.

Installation

Add this line to your application's Gemfile:

gem 'super_cache'

And then execute:

$ bundle

Or install it yourself as:

$ gem install super_cache

Usage

Just call super_caches_page inside your controller with the action names to be cached.

class MyController < ApplicationController
  super_caches_page :index
  def index
    # action to be cached
    @expires_in = 1.hour
  edn
end

Super_cache will store the response body into Rails.cache. The next time requesting that action will get the same result.

There are several instance variables can be used for controlling the cache:

  • @cache_path control the cache key, defaults to the request uri.
  • @expires_in control the expiration time, now defaults to 600 sec.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request