Create expression that removes list items nearest to value and greater by relative rank.
Examples for ordered list [0,4,5,9,11,15]:
- (value,rank) = [removed items]
- (5,0) = [5,9,11,15]
- (5,1) = [9,11,15]
- (5,-1) = [4,5,9,11,15]
- (3,0) = [4,5,9,11,15]
- (3,3) = [11,15]
- (3,-3) = [0,4,5,9,11,15]
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp RemoveByValueRelativeRankRange( Exp value, Exp rank, Exp bin, params CTX[] ctx )
Parameters
- value
- Type: Aerospike.ClientExp
- rank
- Type: Aerospike.ClientExp
- bin
- Type: Aerospike.ClientExp
- ctx
- Type: Aerospike.ClientCTX
Return Value
Type: ExpSee Also