Skip to content

sebastien-coavoux/familia

 
 

Repository files navigation

Familia - 0.10.0

Organize and store ruby objects in Redis. A Ruby ORM for Redis.

Installation

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 [email protected]:delano/familia.git

Basic Example

    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

More Information

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%