-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
38 lines (24 loc) · 1.27 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
ParentalControl
===============
Using parental control your associations will share model instances with each other where appropriate. For example, when using a parent to fetch a child, the child will return the same parent instance if you ask it for it's parent, rather than fetching it from the database.
This might increase performance. It might not. It might make it easier to do things where a child relies on a parent for validation, and you make changes to both parent and child before saving.
So far it works for has_many and has_one (not :through) associations. It also works for belongs_to asociations where the reciprocal association on the parent is a has_one.
For polymorphic associations it works for the belongs_to ends, but not the has_one or has_many ends of the association.
Example
=======
Scenario:
class Man < ActiveRecord::Base
has_one :face
end
class Face < ActiveRecord::Base
belongs_to :man
end
m = Man.first
f = m.face
m.name == f.man.name # => true
m.name = 'Dave'
Without parental_control
m.name == f.man.name # => false : m and f.man are different instances of Man.first :(
With parental_control
m.name == f.man.name # => true : m and f.man are the same instances of Man.first :)
Copyright (c) 2008 Murray Steele, released under the MIT license