Method: Aerospike::Exp::Map.get_by_key_list
- Defined in:
- lib/aerospike/exp/exp_map.rb
permalink .get_by_key_list(return_type, keys, bin, ctx: nil) ⇒ Object
Create expression that selects map items identified by keys and returns selected data specified by return_type (See MapReturnType).
299 300 301 302 |
# File 'lib/aerospike/exp/exp_map.rb', line 299 def self.get_by_key_list(return_type, keys, bin, ctx: nil) bytes = Exp.pack(ctx, GET_BY_KEY_LIST, return_type, keys) add_read(bin, bytes, get_value_type(return_type)) end |