bigworld / super_cache

A simple caching middleware for rails.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A simple caching middleware for rails.

License:MIT License