pub fn is_tombstone() -> FilterExpression
Expand description

Create expression that returns if record has been deleted and is still in tombstone state. This expression usually evaluates quickly because record meta data is cached in memory.

// Deleted records that are in tombstone state.
use aerospike::expressions::{is_tombstone};
is_tombstone();