Add(WritePolicy, Key, Bin) |
Add integer/double bin values to existing record bin values.
The policy specifies the transaction timeout, record expiration and how the transaction is
handled when the record already exists.
(Inherited from AerospikeClientProxy) |
Add(WritePolicy, WriteListener, Key, Bin) |
Not supported in proxy client
Obsolete. |
Add(WritePolicy, CancellationToken, Key, Bin) |
Asynchronously add integer/double bin values to existing record bin values.
The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. |
Append(WritePolicy, Key, Bin) |
Append bin string values to existing record bin values.
The policy specifies the transaction timeout, record expiration and how the transaction is
handled when the record already exists.
This call only works for string values.
(Inherited from AerospikeClientProxy) |
Append(WritePolicy, WriteListener, Key, Bin) |
Not supported in proxy client
Obsolete. |
Append(WritePolicy, CancellationToken, Key, Bin) |
Asynchronously append bin string values to existing record bin values.
The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. This call only works for string values. |
ChangePassword |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Close |
Close all client connections to database server nodes.
(Inherited from AerospikeClientProxy) |
CreateIndex(Policy, String, String, String, String, IndexType) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
CreateIndex(Policy, String, String, String, String, IndexType, IndexCollectionType, CTX) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
CreateRole(AdminPolicy, String, IListPrivilege) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
CreateRole(AdminPolicy, String, IListPrivilege, IListString) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
CreateRole(AdminPolicy, String, IListPrivilege, IListString, Int32, Int32) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
CreateUser |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Delete(WritePolicy, Key) |
Delete record for specified key.
Return whether record existed on server before deletion.
The policy specifies the transaction timeout.
(Inherited from AerospikeClientProxy) |
Delete(BatchPolicy, BatchDeletePolicy, Key) |
Delete records for specified keys. If a key is not found, the corresponding result
resultCode will be KEY_NOT_FOUND_ERROR.
Requires server version 6.0+ (Inherited from AerospikeClientProxy) |
Delete(WritePolicy, DeleteListener, Key) |
Not supported in proxy client
Obsolete. |
Delete(WritePolicy, CancellationToken, Key) | Asynchronously delete record for specified key. |
Delete(BatchPolicy, BatchDeletePolicy, BatchRecordArrayListener, Key) |
Not supported in proxy client
Obsolete. |
Delete(BatchPolicy, BatchDeletePolicy, BatchRecordSequenceListener, Key) |
Not supported in proxy client
Obsolete. |
Delete(BatchPolicy, BatchDeletePolicy, CancellationToken, Key) |
Asynchronously delete records for specified keys.
Requires server version 6.0+ |
Dispose |
Close all client connections to database server nodes.
(Inherited from AerospikeClientProxy) |
DropIndex |
Not supported by proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
DropRole |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
DropUser |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Execute(WritePolicy, Statement, Operation) |
Apply operations on records that match the background query statement filter.
Records are not returned to the client.
This asynchronous server call will return before the command is complete.
The user can optionally wait for command completion by using the returned
ExecuteTask instance.
(Inherited from AerospikeClientProxy) |
Execute(WritePolicy, Key, String, String, Value) |
Execute user defined function on server and return results.
The function operates on a single record.
The package name is used to locate the udf file location:
udf file = <server udf dir>/<package name>.lua (Inherited from AerospikeClientProxy) |
Execute(WritePolicy, Statement, String, String, Value) |
Apply user defined function on records that match the background query statement filter.
Records are not returned to the client.
This asynchronous server call will return before the command is complete.
The user can optionally wait for command completion by using the returned
ExecuteTask instance.
(Inherited from AerospikeClientProxy) |
Execute(BatchPolicy, BatchUDFPolicy, Key, String, String, Value) |
Execute user defined function on server for each key and return results.
The package name is used to locate the udf file location:
udf file = <server udf dir>/<package name>.lua Requires server version 6.0+ (Inherited from AerospikeClientProxy) |
Execute(WritePolicy, ExecuteListener, Key, String, String, Value) |
Not supported in proxy client
Obsolete. |
Execute(WritePolicy, CancellationToken, Key, String, String, Value) | Asynchronously execute user defined function on server for a single record and return result. |
Execute(BatchPolicy, BatchUDFPolicy, BatchRecordArrayListener, Key, String, String, Value) |
Not supported in proxy client
Obsolete. |
Execute(BatchPolicy, BatchUDFPolicy, BatchRecordSequenceListener, Key, String, String, Value) |
Not supported in proxy client
Obsolete. |
Execute(BatchPolicy, BatchUDFPolicy, CancellationToken, Key, String, String, Value) |
Asynchronously execute user defined function on server for each key.
Create listener, call asynchronous delete and return task monitor.
Requires server version 6.0+ |
Exists(BatchPolicy, Key) |
Check if multiple record keys exist in one batch call.
The returned boolean array is in positional order with the original key array order.
(Inherited from AerospikeClientProxy) |
Exists(Policy, Key) |
Determine if a record key exists.
Return whether record exists or not.
The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy) |
Exists(BatchPolicy, ExistsArrayListener, Key) |
Not supported in proxy client
Obsolete. |
Exists(BatchPolicy, ExistsSequenceListener, Key) |
Not supported in proxy client
Obsolete. |
Exists(BatchPolicy, CancellationToken, Key) | Asynchronously check if multiple record keys exist in one batch call. Create listener, call asynchronous array exists and return task monitor. |
Exists(Policy, ExistsListener, Key) |
Not supported in proxy client
Obsolete. |
Exists(Policy, CancellationToken, Key) | Asynchronously determine if a record key exists. |
Get(BatchPolicy, Key) |
Read multiple records for specified keys in one batch call.
The returned records are in positional order with the original key array order.
If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy) |
Get(BatchPolicy, ListBatchRead) |
Read multiple records for specified batch keys in one batch call.
This method allows different namespaces/bins to be requested for each key in the batch.
The returned records are located in the same list.
If the BatchRead key field is not found, the corresponding record field will be null.
(Inherited from AerospikeClientProxy) |
Get(Policy, Key) |
Read entire record for specified key.
If found, return record instance. If not found, return null.
The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy) |
Get(BatchPolicy, Key, Operation) |
Read multiple records for specified keys using read operations in one batch call.
The returned records are in positional order with the original key array order.
If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy) |
Get(BatchPolicy, Key, String) |
Read multiple record headers and bins for specified keys in one batch call.
The returned records are in positional order with the original key array order.
If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy) |
Get(BatchPolicy, BatchListListener, ListBatchRead) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, BatchSequenceListener, ListBatchRead) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, RecordArrayListener, Key) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, RecordSequenceListener, Key) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, CancellationToken, Key) |
Asynchronously read multiple records for specified keys in one batch call.
If a key is not found, the record will be null. |
Get(BatchPolicy, CancellationToken, ListBatchRead) | Asynchronously read multiple records for specified batch keys in one batch call. This method allows different namespaces/bins to be requested for each key in the batch. The returned records are located in the same list. |
Get(Policy, Key, String) |
Read record header and bins for specified key.
If found, return record instance. If not found, return null.
The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy) |
Get(Policy, RecordListener, Key) |
Not supported in proxy client
Obsolete. |
Get(Policy, CancellationToken, Key) | Asynchronously read entire record for specified key. |
Get(BatchPolicy, RecordArrayListener, Key, Operation) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, RecordArrayListener, Key, String) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, RecordSequenceListener, Key, Operation) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, RecordSequenceListener, Key, String) |
Not supported in proxy client
Obsolete. |
Get(BatchPolicy, CancellationToken, Key, Operation) |
Asynchronously read multiple record headers and bins for specified keys using read operations
in one batch call.
If a key is not found, the record will be null. |
Get(BatchPolicy, CancellationToken, Key, String) |
Asynchronously read multiple record headers and bins for specified keys in one batch call.
If a key is not found, the record will be null. |
Get(Policy, RecordListener, Key, String) |
Not supported in proxy client
Obsolete. |
Get(Policy, CancellationToken, Key, String) | Asynchronously read record header and bins for specified key. |
GetClusterStats |
Return operating cluster statistics.
(Inherited from AerospikeClientProxy) |
GetHeader(BatchPolicy, Key) |
Read multiple record header data for specified keys in one batch call.
The returned records are in positional order with the original key array order.
If a key is not found, the positional record will be null.
(Inherited from AerospikeClientProxy) |
GetHeader(Policy, Key) |
Read record generation and expiration only for specified key. Bins are not read.
If found, return record instance. If not found, return null.
The policy can be used to specify timeouts.
(Inherited from AerospikeClientProxy) |
GetHeader(BatchPolicy, RecordArrayListener, Key) |
Not supported in proxy client
Obsolete. |
GetHeader(BatchPolicy, RecordSequenceListener, Key) |
Not supported in proxy client
Obsolete. |
GetHeader(BatchPolicy, CancellationToken, Key) |
Asynchronously read multiple record header data for specified keys in one batch call.
If a key is not found, the record will be null. |
GetHeader(Policy, RecordListener, Key) |
Not supported in proxy client
Obsolete. |
GetHeader(Policy, CancellationToken, Key) | Asynchronously read record generation and expiration only for specified key. Bins are not read. |
GrantPrivileges |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
GrantRoles |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Join(BatchPolicy, Key, Join) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Join(BatchPolicy, Key, String, Join) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Operate(BatchPolicy, ListBatchRecord) |
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+ (Inherited from AerospikeClientProxy) |
Operate(BatchPolicy, BatchOperateListListener, ListBatchRecord) |
Not supported in proxy client
Obsolete. |
Operate(BatchPolicy, BatchRecordSequenceListener, ListBatchRecord) |
Not supported in proxy client
Obsolete. |
Operate(BatchPolicy, CancellationToken, ListBatchRecord) |
Asynchronously read/write multiple records for specified batch keys in one batch call.
Requires server version 6.0+ |
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.
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. (Inherited from AerospikeClientProxy) |
Operate(BatchPolicy, BatchWritePolicy, Key, Operation) |
Perform read/write operations on multiple keys. If a key is not found, the corresponding result
resultCode will be KEY_NOT_FOUND_ERROR.
Requires server version 6.0+ (Inherited from AerospikeClientProxy) |
Operate(WritePolicy, RecordListener, Key, Operation) |
Not supported in proxy client
Obsolete. |
Operate(WritePolicy, CancellationToken, Key, Operation) |
Asynchronously 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. 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(BatchPolicy, BatchWritePolicy, BatchRecordArrayListener, Key, Operation) |
Not supported in proxy client
Obsolete. |
Operate(BatchPolicy, BatchWritePolicy, BatchRecordSequenceListener, Key, Operation) |
Not supported in proxy client
Obsolete. |
Operate(BatchPolicy, BatchWritePolicy, CancellationToken, Key, Operation) |
Asynchronously perform read/write operations on multiple keys.
Requires server version 6.0+ |
Prepend(WritePolicy, Key, Bin) |
Prepend bin string values to existing record bin values.
The policy specifies the transaction timeout, record expiration and how the transaction is
handled when the record already exists.
This call works only for string values.
(Inherited from AerospikeClientProxy) |
Prepend(WritePolicy, WriteListener, Key, Bin) |
Not supported in proxy client
Obsolete. |
Prepend(WritePolicy, CancellationToken, Key, Bin) |
Asynchronously prepend bin string values to existing record bin values.
The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. This call works only for string values. |
Put(WritePolicy, Key, Bin) |
Write record bin(s).
The policy specifies the transaction timeout, record expiration and how the transaction is
handled when the record already exists.
(Inherited from AerospikeClientProxy) |
Put(WritePolicy, WriteListener, Key, Bin) |
Not supported in proxy client
Obsolete. |
Put(WritePolicy, CancellationToken, Key, Bin) |
Asynchronously write record bin(s).
The policy specifies the transaction timeout, record expiration and how the transaction is handled when the record already exists. |
Query(QueryPolicy, Statement) |
Execute query on all server nodes and return records via the listener. This method will
block until the query is complete.
If maxConcurrentNodes is not 1, the supplied listener must handle shared data in a thread-safe manner, because the listener will be called by multiple query threads (one thread per node) in parallel. Requires server version 6.0+ if using a secondary index query. (Inherited from AerospikeClientProxy) |
Query(QueryPolicy, Statement, QueryListener) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Query(QueryPolicy, Statement, ActionKey, Record) |
Execute query and call action for each record returned from server.
(Inherited from AerospikeClientProxy) |
Query(QueryPolicy, RecordSequenceListener, Statement) |
Not supported in proxy client
Obsolete. |
Query(QueryPolicy, CancellationToken, Statement) |
Execute query on all server nodes and return records via the listener. This method will
block until the query is complete. Listener callbacks are made within the scope of this call.
If maxConcurrentNodes is not 1, the supplied listener must handle shared data in a thread-safe manner, because the listener will be called by multiple query threads (one thread per node) in parallel. Requires server version 6.0+ if using a secondary index query. |
Query(QueryPolicy, Statement, PartitionFilter, QueryListener) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Query(QueryPolicy, CancellationToken, Statement, ActionKey, Record) | Execute query and call action for each record returned from server. |
QueryAggregate(QueryPolicy, Statement) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
QueryAggregate(QueryPolicy, Statement, ActionObject) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
QueryAggregate(QueryPolicy, Statement, String, String, Value) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
QueryPartitions(QueryPolicy, Statement, PartitionFilter) |
Execute query for specified partitions and return record iterator. The query executor puts
records on a queue in separate threads. The calling thread concurrently pops records off
the queue through the record iterator.
Requires server version 6.0+ if using a secondary index query. (Inherited from AerospikeClientProxy) |
QueryPartitions(QueryPolicy, Statement, PartitionFilter, CancellationToken) | (Inherited from AerospikeClientProxy) |
QueryPartitions(QueryPolicy, RecordSequenceListener, Statement, PartitionFilter) |
Not supported in proxy client
Obsolete. |
QueryPartitions(QueryPolicy, CancellationToken, Statement, PartitionFilter) |
Execute query for specified partitions and return record iterator. The query executor puts
records on a queue in separate threads. The calling thread concurrently pops records off
the queue through the record iterator.
Requires server version 6.0+ if using a secondary index query. |
QueryRole |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
QueryRoles |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
QueryUser |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
QueryUsers |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Register(Policy, String, String, Language) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Register(Policy, Assembly, String, String, Language) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
RegisterUdfString |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
RemoveUdf |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
RevokePrivileges |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
RevokeRoles |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
ScanAll(ScanPolicy, String, String, String) |
Read all records in specified namespace and set.
This call will block until the scan is complete (Inherited from AerospikeClientProxy) |
ScanAll(ScanPolicy, String, String, ScanCallback, String) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
ScanAll(ScanPolicy, RecordSequenceListener, String, String, String) |
Not supported in proxy client
Obsolete. |
ScanAll(ScanPolicy, CancellationToken, String, String, String) | Asynchronously read all records in specified namespace and set. |
ScanNode(ScanPolicy, Node, String, String, ScanCallback, String) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
ScanNode(ScanPolicy, String, String, String, ScanCallback, String) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
ScanPartitions(ScanPolicy, PartitionFilter, String, String, String) |
Read records in specified namespace, set and partition filter.
This call will block until the scan is complete (Inherited from AerospikeClientProxy) |
ScanPartitions(ScanPolicy, PartitionFilter, String, String, ScanCallback, String) |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
ScanPartitions(ScanPolicy, RecordSequenceListener, PartitionFilter, String, String, String) |
Not supported in proxy client
Obsolete. |
ScanPartitions(ScanPolicy, CancellationToken, PartitionFilter, String, String, String) | Asynchronously read records in specified namespace, set and partition filter. |
SetQuotas |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
SetWhitelist |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
SetXDRFilter |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |
Touch(WritePolicy, Key) |
Reset record's time to expiration using the policy's expiration.
Fail if the record does not exist.
(Inherited from AerospikeClientProxy) |
Touch(WritePolicy, WriteListener, Key) |
Not supported in proxy client
Obsolete. |
Touch(WritePolicy, CancellationToken, Key) | Asynchronously reset record's time to expiration using the policy's expiration. Fail if the record does not exist. |
Truncate |
Not supported in proxy client
(Inherited from AerospikeClientProxy) Obsolete. |