BitOperation ClassAerospike
Bit operations. Create bit operations used by client operate command. Offset orientation is left-to-right. Negative offsets are supported. If the offset is negative, the offset starts backwards from end of the bitmap. If an offset is out of bounds, a parameter error will be returned.

Nested CDT operations are supported by optional CTX context arguments. Example:

  • bin = [[0b00000001, 0b01000010],[0b01011010]]
  • Resize first bitmap (in a list of bitmaps) to 3 bytes.
  • BitOperation.resize("bin", 3, BitResizeFlags.DEFAULT, CTX.listIndex(0))
  • bin result = [[0b00000001, 0b01000010, 0b00000000],[0b01011010]]

Inheritance Hierarchy

OnlineSystem Object
  Aerospike.Client BitOperation

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 3.8.2.0 (3.8.2)
Syntax

See Also