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

Record storage

Aerospike record storage data expressions allow you to access and retrieve values stored in bins and keys within records.

This guide covers expressions like bin_blob, bin_exists, bin_float, bin_geo, bin_int, bin_list, bin_map, bin_str, key_blob, key_int, and key_str, which enable efficient data retrieval based on bin type or record key. Code examples demonstrate how to use them effectively in queries.

Ops

bin_blob
bin_blob(name)
Description

Retrieve the bin with the name indicated by name as a blob_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
blob_bin
Introduced
5.2.0.4
bin_exists
bin_exists(name)
Description

Returns true if a bin exists on the record with the name indicated by name, otherwise returns unknown.

Arguments
NameType
name string_value
Returns
boolean_value
Introduced
5.2.0.4
bin_float
bin_float(name)
Description

Retrieve the bin with the name indicated by name as a float_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
float_bin
Introduced
5.2.0.4
bin_geo
bin_geo(name)
Description

Retrieve the bin with the name indicated by name as a geojson_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
geojson_bin
Introduced
5.2.0.4
bin_hll
bin_hll(name)
Description

Retrieve the bin with the name indicated by name as a hll_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
hll_bin
Introduced
5.2.0.4
bin_int
bin_int(name)
Description

Retrieve the bin with the name indicated by name as a integer_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
integer_bin
Introduced
5.2.0.4
bin_list
bin_list(name)
Description

Retrieve the bin with the name indicated by name as a list_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
list_bin
Introduced
5.2.0.4
bin_map
bin_map(name)
Description

Retrieve the bin with the name indicated by name as a map_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
map_bin
Introduced
5.2.0.4
bin_str
bin_str(name)
Description

Retrieve the bin with the name indicated by name as a string_bin. Return unknown if the bin does not exist or the bin is a different type.

Arguments
NameType
name string_value
Returns
string_bin
Introduced
5.2.0.4
bin_type
bin_type(name)
Description

Retrieve the data type of the bin with the name indicated by name in ParticleType format. Return unknown if the bin does not exist.

The following list shows each bin ParticleType and its associated integer value:

NULL: 0

INTEGER: 1

DOUBLE: 2

STRING: 3

BLOB: 4

JBLOB: 7

BOOL: 17

HLL: 18

MAP: 19

LIST: 20

GEOJSON: 23

Arguments
NameType
name string_value
Returns
ParticleType
Introduced
5.2.0.4
key_blob
key_blob()
Description

Retrieve the key as a blob/bytes. Return unknown if the key does not exist or the key is a different type.

Returns
blob_value
Introduced
5.2.0.4
key_int
key_int()
Description

Retrieve the key as a integer. Return unknown if the key does not exist or the key is a different type.

Returns
integer_value
Introduced
5.2.0.4
key_str
key_str()
Description

Retrieve the key as a string. Return unknown if the key does not exist or the key is a different type.

Returns
string_value
Introduced
5.2.0.4
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?