Name | Description | |
---|---|---|
![]() | Operate(WritePolicy, Key, Operation) |
Perform multiple read/write operations on a single key in one batch call.
An example would be to add an integer value to an existing record and then
read the result, all in one database call.
(Inherited from AerospikeClient.)The server executes operations in the same order as the operations array. Both scalar bin operations (Operation) and CDT bin operations (ListOperation, MapOperation) can be performed in same call. |
![]() | Operate(WritePolicy, RecordListener, Key, Operation) |
Asynchronously perform multiple read/write operations on a single key in one batch call.
Schedule the operate command with a channel selector and return.
Another thread will process the command and send the results to the listener.
An example would be to add an integer value to an existing record and then read the result, all in one database call. |
![]() | Operate(WritePolicy, CancellationToken, Key, Operation) |
Asynchronously perform multiple read/write operations on a single key in one batch call.
Create listener, call asynchronous operate and return task monitor.
An example would be to add an integer value to an existing record and then read the result, all in one database call. The server executes operations in the same order as the operations array. Both scalar bin operations (Operation) and CDT bin operations (ListOperation, MapOperation) can be performed in same call. |