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

Comparison

Aerospike comparison expressions allow you to evaluate values and return boolean results.

This guide explains operators like eq, ne, lt, gt, le, ge, cmp_regex, and cmp_geo. Code examples demonstrate how to implement these comparisons in database queries.

Ops

cmp_geo
cmp_geo(left, right)
Description

Returns true if the left is either contained within or contains the right.

Arguments
NameType
left geojson_expr
right geojson_expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find where bin ‘region’ contains a point.

const char* point = "<geojson point here>";
as_exp_build(predexp,
as_exp_cmp_geo(as_exp_geo(point), as_exp_bin_geo("region")));
cmp_regex
cmp_regex(regex_string, options_value, string)
Description

Returns true if the regex_string matches the string, otherwise returns false.

Arguments
NameType
regex_string string_value
options_value integer_value
string string_expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find records where bin ‘phone_num’ contains area_code ‘555’.

as_exp_build(predexp,
as_exp_cmp_regex("^555.*", 0, as_exp_bin_str("phone_num")));
eq
eq(left, right)
Description

Returns true if the left is equal to the right, otherwise returns false. left and right must result in the same fundamental type.

Arguments
NameType
left expr
right expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find records where bin ‘fname’ is equal to ‘Frank’.

as_exp_build(predexp,
as_exp_cmp_eq(as_exp_bin_str("fname"), as_exp_str("frank")));
ge
ge(left, right)
Description

Returns true if the left is greater than or equal to the right, otherwise returns false. left and right must result in the same fundamental type.

Arguments
NameType
left expr
right expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find records where bin ‘age’ is greater than or equal to 21.

as_exp_build(predexp,
as_exp_cmp_ge(as_exp_bin_int("age"), as_exp_int(21)));
gt
gt(left, right)
Description

Returns true if the left is greater than to the right, otherwise returns false. left and right must result in the same fundamental type.

Arguments
NameType
left expr
right expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find records where the time-to-live (TTL) is greater than 1 year.

as_exp_build(predexp,
as_exp_cmp_gt(as_exp_ttl(), as_exp_int(365 * 24 * 3600)));
le
le(left, right)
Description

Returns true if the left is less than or equal to the right, otherwise returns false. left and right must result in the same fundamental type.

Arguments
NameType
left expr
right expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find records where bin ‘balance’ is less than or equal to 100.

as_exp_build(predexp,
as_exp_cmp_le(as_exp_bin_int("balance"), as_exp_int(100)));
lt
lt(left, right)
Description

Returns true if the left is less than the right, otherwise returns false. left and right must result in the same fundamental type.

Arguments
NameType
left expr
right expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find where bin ‘lname’ between ‘o’ and ‘p’.

as_exp_build(predexp,
as_exp_and(
as_exp_cmp_ge(as_exp_bin_str("lname"), as_exp_str("o"))
as_exp_cmp_lt(as_exp_bin_str("lname"), as_exp_str("p"))));
ne
ne(left, right)
Description

Returns true if the left is not equal to the right, otherwise returns false. left and right must result in the same fundamental type.

Arguments
NameType
left expr
right expr
Returns
boolean_value
Introduced
5.2.0.4
Example

Find records where bin ‘age’ is not an integer.

as_exp_build(predexp,
as_exp_cmp_ne(
as_exp_bin_type("age"), as_exp_int(AS_BYTES_INTEGER)));
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?