pub fn digest_modulo(modulo: i64) -> FilterExpression
Expand description

Create function that returns record digest modulo as integer.

// Records that have digest(key) % 3 == 1
use aerospike::expressions::{int_val, eq, digest_modulo};
eq(digest_modulo(3), int_val(1));