MapExp GetByValueRelativeRankRange Method Aerospike
Overload List

  NameDescription
Public methodStatic memberGetByValueRelativeRankRange(MapReturnType, Exp, Exp, Exp,  CTX )
Create expression that selects map items nearest to value and greater by relative rank. Expression returns selected data specified by returnType.

Examples for map [{4=2},{9=10},{5=15},{0=17}]:

  • (value,rank) = [selected items]
  • (11,1) = [{0=17}]
  • (11,-1) = [{9=10},{5=15},{0=17}]

Public methodStatic memberGetByValueRelativeRankRange(MapReturnType, Exp, Exp, Exp, Exp,  CTX )
Create expression that selects map items nearest to value and greater by relative rank with a count limit. Expression returns selected data specified by returnType.

Examples for map [{4=2},{9=10},{5=15},{0=17}]:

  • (value,rank,count) = [selected items]
  • (11,1,1) = [{0=17}]
  • (11,-1,1) = [{9=10}]

Back to Top
See Also