Organize and store ruby objects in Redis. A Ruby ORM for Redis.
Get it in one of the following ways:
- In your Gemfile:
gem 'familia', '>= 0.10.0' - Install it by hand:
gem install familia - Or for development:
git clone git@github.com:delano/familia.git
class Flower < Storable
include Familia
index [:token, :name]
field :token
field :name
list :owners
set :tags
zset :metrics
hash :props
string :value, :default => "GREAT!"
end