Method: Aerospike::CDT::MapOperation.remove_by_key_list

Defined in:
lib/aerospike/cdt/map_operation.rb

.remove_by_key_list(bin_name, keys, ctx: nil, return_type: MapReturnType::NONE) ⇒ Object

Create map remove operation.

Server removes map items identified by keys.

Server returns removed data specified by return_type.



236
237
238
# File 'lib/aerospike/cdt/map_operation.rb', line 236

def self.remove_by_key_list(bin_name, keys, ctx: nil, return_type: MapReturnType::NONE)
  MapOperation.new(Operation::CDT_MODIFY, REMOVE_BY_KEY_LIST, bin_name, keys, ctx: ctx, return_type: return_type)
end