0.0
No commit activity in last 3 years
No release in over 3 years
The RedisColumn gem allows for the seamless integration of Redis within your ActiveRecord model in order to store heavy objects away from tables with a lot of rows.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

RedisColumn

Seamlessly extend your AR model with Redis

The RedisColumn gem allows for the seamless integration of Redis within your ActiveRecord model in order to store heavy objects away from tables with a lot of rows.

Installation

gem install redis-column

Usage

Within an initializer:

RedisColumn.config = YAML.load_file(Rails.root.join('config/redis.yml'))[:development]

Within your model:

class Page < ActiveRecord::Base
  redis_column :body
end