Skip to content

thinkerbot/data_graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

= DataGraph

Simplified eager loading for ActiveRecord

== Description

The default eager loading mechanism of ActiveRecord has numerous cases where
these two are not equivalent as you might expect:

  Model.find(:first, :include => :assoc).assoc
  Model.find(:first).assoc

As a result it gets tricky to make associations that work correctly via
include. Oftentimes too much data gets returned. DataGraph makes eager loading
easier by providing a way to declare and load a specific set of associated
data.

== Usage

DataGraph uses a syntax based on the serialization methods.

  require 'data_graph'
  graph = Model.data_graph(
    :only => [:a, :b, :c],
    :include => {
      :assoc => {
        :only => [:x, :y]
  }})
  
  data = graph.find(:first)
  data.a                       # => 'A'
  data.assoc.x                 # => 'X'
  data.assoc.z                 # !> ActiveRecord::MissingAttributeError

Any number of associations may be specified this way, and to any nesting
depth. DataGraph always uses a 'one query per-association' strategy and never
reverts to left outer joins the way include sometimes will.

== Installation

DataGraph is available as a gem on {Gemcutter}[http://gemcutter.org/gems/data_graph]

  % gem install data_graph

== Info 

Developer:: {Simon Chiang}[http://bahuvrihi.wordpress.com]
License:: {MIT-Style}[link:files/License_txt.html]

About

Simplified eager loading for ActiveRecord

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages