Create expression that returns record size on disk. If server storage-engine is
memory, then zero is returned. This expression usually evaluates quickly because
record meta data is cached in memory.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.0.0 (5.1.0)
Syntax
C#
public static Exp DeviceSize()
Return Value
Type: ExpExamples
// Record device size >= 100 KB Exp.GE(Exp.DeviceSize(), Exp.Val(100 * 1024))
See Also