Module aerospike::expressions::maps

source ·
Expand description

Map Cdt Aerospike Filter Expressions.

Functions

  • Create expression that removes all items in map.
  • Create expression that selects map item identified by index and returns selected data specified by returnType.
  • Create expression that selects map items starting at specified index to the end of map and returns selected data specified by returnType.
  • Create expression that selects “count” map items starting at specified index and returns selected data specified by returnType.
  • Create expression that selects map item identified by key and returns selected data specified by returnType.
  • Create expression that selects map items identified by keys and returns selected data specified by returnType
  • Create expression that selects map items identified by key range (keyBegin inclusive, keyEnd exclusive). If keyBegin is null, the range is less than keyEnd. If keyEnd is null, the range is greater than equal to keyBegin. Expression returns selected data specified by returnType.
  • Create expression that selects map items nearest to key and greater by index. Expression returns selected data specified by returnType.
  • Create expression that selects map items nearest to key and greater by index with a count limit. Expression returns selected data specified by returnType.
  • Create expression that selects map item identified by rank and returns selected data specified by returnType.
  • Create expression that selects map items starting at specified rank to the last ranked item and returns selected data specified by returnType.
  • Create expression that selects “count” map items starting at specified rank and returns selected data specified by returnType.
  • Create expression that selects map items identified by value and returns selected data specified by returnType.
  • Create expression that selects map items identified by values and returns selected data specified by returnType.
  • Create expression that selects map items identified by value range (valueBegin inclusive, valueEnd exclusive) If valueBegin is null, the range is less than valueEnd. If valueEnd is null, the range is greater than equal to valueBegin.
  • Create expression that selects map items nearest to value and greater by relative rank. Expression returns selected data specified by returnType.
  • 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.
  • Create expression that increments values by incr for all items identified by key. Valid only for numbers.
  • Create expression that writes key/value item to map bin.
  • Create expression that writes each map item to map bin.
  • Create expression that removes map item identified by index.
  • Create expression that removes map items starting at specified index to the end of map.
  • Create expression that removes “count” map items starting at specified index.
  • Create expression that removes map item identified by key.
  • Create expression that removes map items identified by keys.
  • Create expression that removes map items identified by key range (keyBegin inclusive, keyEnd exclusive). If keyBegin is null, the range is less than keyEnd. If keyEnd is null, the range is greater than equal to keyBegin.
  • Create expression that removes map items nearest to key and greater by index.
  • Create expression that removes map items nearest to key and greater by index with a count limit.
  • Create expression that removes map item identified by rank.
  • Create expression that removes map items starting at specified rank to the last ranked item.
  • Create expression that removes “count” map items starting at specified rank.
  • Create expression that removes map items identified by value.
  • Create expression that removes map items identified by values.
  • Create expression that removes map items identified by value range (valueBegin inclusive, valueEnd exclusive). If valueBegin is null, the range is less than valueEnd. If valueEnd is null, the range is greater than equal to valueBegin.
  • Create expression that removes map items nearest to value and greater by relative rank.
  • Create expression that removes map items nearest to value and greater by relative rank with a count limit.
  • Create expression that returns list size.