Function aerospike::expressions::key

source ·
pub fn key(exp_type: ExpType) -> FilterExpression
Expand description

Create a record key expression of specified type.

use aerospike::expressions::{ExpType, ge, int_val, key};
// Integer record key >= 100000
ge(key(ExpType::INT), int_val(10000));