Exp DigestModulo Method Aerospike
Create expression that returns record digest modulo as integer. This expression usually evaluates quickly because record meta data is cached in memory.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.1.4.0 (4.1.4)
Syntax

Parameters

mod
Type: System Int32
Examples

// Records that have digest(key) % 3 == 1
Exp.EQ(Exp.DigestModulo(3), Exp.Val(1))
See Also