AerospikeClientGet Method

Aerospike
Overload List

  NameDescription
Public methodGet(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. The policy can be used to specify timeouts and maximum concurrent threads.

If a batch request to a node fails, the entire batch is cancelled.

Public methodGet(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 BatchRecord key field is not found, the corresponding record field will be null. The policy can be used to specify timeouts and maximum concurrent threads. This method requires Aerospike Server version >= 3.6.0.

If a batch request to a node fails, the entire batch is cancelled.

Public methodGet(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.
Public methodGet(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. The policy can be used to specify timeouts and maximum concurrent threads.

If a batch request to a node fails, the entire batch is cancelled.

Public methodGet(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.
Top
See Also

Reference