pub fn void_time() -> FilterExpression
Expand description

Create function that returns record expiration time expressed as 64 bit integer nanoseconds since 1970-01-01 epoch.

// Expires on 2020-08-01
use aerospike::expressions::{and, ge, last_update, float_val, lt};
and(vec![ge(last_update(), float_val(1.5962E+18)), lt(last_update(), float_val(1.5963E+18))]);