Skip to content
Visit booth 3171 at Google Cloud Next to see how to unlock real-time decisions at scaleMore info

Scalar data types

Aerospike records have one or more bins. Each bin holds a distinct scalar data type such as Integer or String, a collection data type (CDT) such as List or Map, a probabilistic data type such as HyperLogLog, or a geospatial GeoJSON data type.

The following are scalar data types:

Integer

Integers are 64-bit numeric values.

  • Each integer requires 8 bytes (64 bits) of storage.
  • For touchpoints in the database where integers need to assume a signed-ness, such as secondary index, the integer is signed, in the range of [ −(2^63) to 2^63 − 1 ].
  • An atomic increment operation can be applied to integer values. This can be used to implement counters.
  • Secondary indexes are supported on integer data types, for both equality and range queries.

Double

The double data type is stored in 64-bit IEEE-754 format.

  • An atomic increment operation can be applied to double values.

String

Strings are opaque byte arrays. They are not bound to an encoding, which allows you to use any character encoding for strings.

  • Strings assume UTF-8 encoding for touchpoints in the database where an encoding is required.
  • Client libraries can enforce encoding (for example, Java and C# clients always convert to UTF-8). Refer to the client library for your implementation.
  • Cross-language compatibility is determined by the application, and the application sets encoding for reads and writes.
  • Atomic prepend and append operations can be applied to string values.
  • Secondary indexes are supported on string data type for equality queries.

Boolean

The boolean data type holds a value of either true or false.

It is stored as a single byte on the server.

Blob/Bytes

Blobs are byte arrays of a specific size.

  • Any binary data of any type can be stored.
  • An extensive API of bitwise operations can be applied to byte values.

Language-Specific Serialized Blobs

Using their native-language serialization mechanism, the following Aerospike clients serialize unsupported data types into blobs. These blobs are deserialized automatically on reads.

  • Java
  • C# .NET
  • Python
Feedback

Was this page helpful?

What type of feedback are you giving?

What would you like us to know?

+Capture screenshot

Can we reach out to you?