Policy filterExp FieldAerospike
Optional expression filter. If filterExp exists and evaluates to false, the transaction is ignored.

predExp and filterExp are mutually exclusive. If both are defined, predExp will be ignored.

Default: null

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.1.0 (4.2.1)
Syntax

Examples

Policy p = new Policy();
p.filterExp = Exp.build(Exp.EQ(Exp.IntBin("a"), Exp.Val(11)));
See Also