Exp SinceUpdate Method Aerospike
Create expression that returns milliseconds since the record was last updated. This expression usually evaluates quickly because record meta data is cached in memory.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.0.2.0 (4.0.2)
Syntax

Examples

// Record last updated more than 2 hours ago
Exp.GT(Exp.SinceUpdate(), Exp.Val(2 * 60 * 60 * 1000))
See Also