Sha256: b548161b28406ba36c24273a263a286d39e57f6f9d4002b9c11608577cf99fa1
Contents?: true
Size: 1.9 KB
Versions: 1
Compression:
Stored size: 1.9 KB
Contents
# ShadowModel A rails plugin use redis to cache models data. [](https://travis-ci.org/cctiger36/shadow_model) [](http://badge.fury.io/rb/shadow_model) [](https://coveralls.io/r/cctiger36/shadow_model) [](https://codeclimate.com/github/cctiger36/shadow_model) [](https://gemnasium.com/cctiger36/shadow_model) ## Installation Add this line to your application's Gemfile: gem 'shadow_model' And then execute: $ bundle ## Usage Add this to your model class, then the models will be cached with the assigned attributes and methods after the model saved or updated. shadow_model attribute_or_method1, attribute_or_method2, ..., options And use this to retrieve the model from redis. YourModelClass.find_by_shadow(primary_key) ### options <table> <tr> <td>expiration</td><td>Set the timeout of each cache.</td> </tr> <tr> <td> update_expiration</td><td>Reset cache expiration after model updated.</td> </tr> <tr> <td>expireat</td><td>Set the absolute timeout timestamp of each cache.</td> </tr> </table> ## Example # == Schema Information # # Table name: players # # id :integer not null, primary key # name :string(255) # stamina :integer # created_at :datetime not null # updated_at :datetime not null class Player < ActiveRecord::Base shadow_model :name, :stamina, :cacheable_method, expiration: 30.minutes def cacheable_method "result to cache" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shadow_model-0.1.2 | README.md |