Method: Aerospike::CDT::MapOperation.remove_by_value_list
- Defined in:
- lib/aerospike/cdt/map_operation.rb
.remove_by_value_list(bin_name, values, ctx: nil, return_type: MapReturnType::NONE) ⇒ Object
Create map remove operation.
Server removes map items identified by value.
Server returns removed data specified by return_type.
322 323 324 |
# File 'lib/aerospike/cdt/map_operation.rb', line 322 def self.remove_by_value_list(bin_name, values, ctx: nil, return_type: MapReturnType::NONE) MapOperation.new(Operation::CDT_MODIFY, REMOVE_BY_VALUE_LIST, bin_name, values, ctx: ctx, return_type: return_type) end |