0.02
No commit activity in last 3 years
No release in over 3 years
A simple caching middleware for rails
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

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, :expires_in => 1.hour
  def index
    # action to be cached
  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 options can be passed to super_caches_page:

  • 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