Create list get by value relative to rank range operation.
Server selects list items nearest to value and greater by relative rank with a count limit.
Server returns selected data specified by returnType.
Examples for ordered list [0,4,5,9,11,15]:
- (value,rank,count) = [selected items]
- (5,0,2) = [5,9]
- (5,1,1) = [9]
- (5,-1,2) = [4,5]
- (3,0,1) = [4]
- (3,3,7) = [11,15]
- (3,-3,2) = []
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Operation GetByValueRelativeRankRange( string binName, Value value, int rank, int count, ListReturnType returnType, params CTX[] ctx )
Parameters
- binName
- Type: SystemString
- value
- Type: Aerospike.ClientValue
- rank
- Type: SystemInt32
- count
- Type: SystemInt32
- returnType
- Type: Aerospike.ClientListReturnType
- ctx
- Type: Aerospike.ClientCTX
Return Value
Type: OperationSee Also