Method: Aerospike::CDT::MapOperation.get_by_index_range
- Defined in:
- lib/aerospike/cdt/map_operation.rb
.get_by_index_range(bin_name, index, count = nil, ctx: nil, return_type: MapReturnType::NONE) ⇒ Object
Create map get by index range operation.
Server selects “count” map items starting at specified index. If “count” is not specified, server selects map items starting at specified index to the end of map.
Server returns selected data specified by return_type.
600 601 602 603 604 605 606 |
# File 'lib/aerospike/cdt/map_operation.rb', line 600 def self.get_by_index_range(bin_name, index, count = nil, ctx: nil, return_type: MapReturnType::NONE) if count MapOperation.new(Operation::CDT_READ, GET_BY_INDEX_RANGE, bin_name, index, count, ctx: ctx, return_type: return_type) else MapOperation.new(Operation::CDT_READ, GET_BY_INDEX_RANGE, bin_name, index, ctx: ctx, return_type: return_type) end end |