IAerospikeClient.Operate(BatchPolicy, List<BatchRecord>) Method

Read/Write multiple records for specified batch keys in one batch call. This method allows different namespaces/bins for each key in the batch. The returned records are located in the same list.

BatchRecord can be BatchRead, BatchWrite, BatchDelete or BatchUDF.

Requires server version 6.0+

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
bool Operate(
	BatchPolicy policy,
	List<BatchRecord> records
)

Parameters

policy  BatchPolicy
batch configuration parameters, pass in null for defaults
records  List<BatchRecord>
list of unique record identifiers and read/write operations

Return Value

Boolean
true if all batch sub-commands succeeded

Exceptions

AerospikeExceptionif command fails

See Also