Module: Dynamoid::IdentityMap::ClassMethods

Defined in:
lib/dynamoid/identity_map.rb

Instance Method Summary collapse

Instance Method Details

#find_by_id(id, options = {}) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/dynamoid/identity_map.rb', line 34

def find_by_id(id, options = {})
  return super if identity_map_off?

  key = id.to_s

  if range_key = options[:range_key]
    key += "::#{range_key}"
  end

  identity_map[key] || super
end

#from_database(attrs = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/dynamoid/identity_map.rb', line 17

def from_database(attrs = {})
  return super if identity_map_off?

  key = identity_map_key(attrs)
  document = identity_map[key]

  if document.nil?
    document = super
    identity_map[key] = document
  else
    document.load(attrs)
  end

  document
end

#identity_mapObject



12
13
14
# File 'lib/dynamoid/identity_map.rb', line 12

def identity_map
  @identity_map ||= {}
end

#identity_map_key(attrs) ⇒ Object



47
48
49
50
51
# File 'lib/dynamoid/identity_map.rb', line 47

def identity_map_key(attrs)
  key = attrs[hash_key].to_s
  key += "::#{attrs[range_key]}" if range_key
  key
end

#identity_map_off?Boolean

Returns:

  • (Boolean)


57
58
59
# File 'lib/dynamoid/identity_map.rb', line 57

def identity_map_off?
  !identity_map_on?
end

#identity_map_on?Boolean

Returns:

  • (Boolean)


53
54
55
# File 'lib/dynamoid/identity_map.rb', line 53

def identity_map_on?
  Dynamoid::Config.identity_map
end