CTX MembersAerospike

The CTX type exposes the following members.
Methods

  NameDescription
Public methodStatic memberListIndex
Lookup list by index offset.

If the index is negative, the resolved index starts backwards from end of list. If an index is out of bounds, a parameter error will be returned. Examples:

  • 0: First item.
  • 4: Fifth item.
  • -1: Last item.
  • -3: Third to last item.

Public methodStatic memberListIndexCreate
Create list with given order at index offset.
Public methodStatic memberListRank
Lookup list by rank.
  • 0 = smallest value
  • N = Nth smallest value
  • -1 = largest value
Public methodStatic memberListValue
Lookup list by value.
Public methodStatic memberMapIndex
Lookup map by index offset.

If the index is negative, the resolved index starts backwards from end of list. If an index is out of bounds, a parameter error will be returned. Examples:

  • 0: First item.
  • 4: Fifth item.
  • -1: Last item.
  • -3: Third to last item.

Public methodStatic memberMapKey
Lookup map by key.
Public methodStatic memberMapKeyCreate
Create map with given order at map key.
Public methodStatic memberMapRank
Lookup map by rank.
  • 0 = smallest value
  • N = Nth smallest value
  • -1 = largest value
Public methodStatic memberMapValue
Lookup map by value.
Back to Top
See Also