132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
# File 'lib/aerospike/batch_attr.rb', line 132
def set_batch_write(wp)
@filter_exp = wp.filter_exp
@read_attr = 0
@write_attr = Aerospike::INFO2_WRITE | Aerospike::INFO2_RESPOND_ALL_OPS
@info_attr = 0
@expiration = wp.expiration
@has_write = true
@send_key = wp.send_key
case wp.generation_policy
when GenerationPolicy::NONE
@generation = 0
when GenerationPolicy::EXPECT_GEN_EQUAL
@generation = wp.generation
@write_attr |= Aerospike::INFO2_GENERATION
when GenerationPolicy::EXPECT_GEN_GT
@generation = wp.generation
@write_attr |= Aerospike::INFO2_GENERATION_GT
else
@generation = 0
end
case wp.record_exists_action
when RecordExistsAction::UPDATE
when RecordExistsAction::UPDATE_ONLY
@info_attr |= Aerospike::INFO3_UPDATE_ONLY
when RecordExistsAction::REPLACE
@info_attr |= Aerospike::INFO3_CREATE_OR_REPLACE
when RecordExistsAction::REPLACE_ONLY
@info_attr |= Aerospike::INFO3_REPLACE_ONLY
when RecordExistsAction::CREATE_ONLY
@write_attr |= Aerospike::INFO2_CREATE_ONLY
end
if wp.durable_delete
@write_attr |= Aerospike::INFO2_DURABLE_DELETE
end
if wp.commit_level == CommitLevel::COMMIT_MASTER
@info_attr |= Aerospike::INFO3_COMMIT_MASTER
end
end
|