Module: Dynamoid::Fields
Overview
All fields on a Dynamoid::Document must be explicitly defined – if you have fields in the database that are not specified with field, then they will be ignored.
Defined Under Namespace
Modules: ClassMethods
Instance Attribute Summary collapse
-
#attributes ⇒ Object
(also: #raw_attributes)
You can access the attributes of an object directly on its attributes method, which is by default an empty hash.
Instance Method Summary collapse
-
#read_attribute(name) ⇒ Object
(also: #[])
Read an attribute from an object.
-
#update_attribute(attribute, value) ⇒ Object
Update a single attribute, saving the object afterwards.
-
#update_attributes(attributes) ⇒ Object
Updates multiple attibutes at once, saving the object once the updates are complete.
-
#write_attribute(name, value) ⇒ Object
(also: #[]=)
Write an attribute on the object.
Instance Attribute Details
#attributes ⇒ Object Also known as: raw_attributes
You can access the attributes of an object directly on its attributes method, which is by default an empty hash.
75 76 77 |
# File 'lib/dynamoid/fields.rb', line 75 def attributes @attributes end |
Instance Method Details
#read_attribute(name) ⇒ Object Also known as: []
Read an attribute from an object.
102 103 104 |
# File 'lib/dynamoid/fields.rb', line 102 def read_attribute(name) attributes[name.to_sym] end |
#update_attribute(attribute, value) ⇒ Object
Update a single attribute, saving the object afterwards.
123 124 125 126 |
# File 'lib/dynamoid/fields.rb', line 123 def update_attribute(attribute, value) write_attribute(attribute, value) save end |
#update_attributes(attributes) ⇒ Object
Updates multiple attibutes at once, saving the object once the updates are complete.
112 113 114 115 |
# File 'lib/dynamoid/fields.rb', line 112 def update_attributes(attributes) attributes.each {|attribute, value| self.write_attribute(attribute, value)} unless attributes.nil? || attributes.empty? save end |
#write_attribute(name, value) ⇒ Object Also known as: []=
Write an attribute on the object. Also marks the previous value as dirty.
84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/dynamoid/fields.rb', line 84 def write_attribute(name, value) if (size = value.to_s.size) > MAX_ITEM_SIZE Dynamoid.logger.warn "DynamoDB can't store items larger than #{MAX_ITEM_SIZE} and the #{name} field has a length of #{size}." end if association = @associations[name] association.reset end attributes[name.to_sym] = value end |