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: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp SinceUpdate()
Return Value
Type: ExpExamples
// Record last updated more than 2 hours ago Exp.GT(Exp.SinceUpdate(), Exp.Val(2 * 60 * 60 * 1000))
See Also