Size of buffer allocated for each async command. The size should be a multiple of 8 KB.
If not, the size is rounded up to the nearest 8 KB increment.
If an async command requires a buffer size less than or equal to asyncBufferSize, the buffer pool will be used. If an async command requires a buffer size greater than asyncBufferSize, a new single-use buffer will be created on the heap.
This field is also used to size the buffer pool for all async commands:
buffer pool size = asyncBufferSize * asyncMaxCommands
Default: 128 * 1024 (128 KB)
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.0.0 (5.3.0)
Syntax
C#
public int asyncBufferSize
Field Value
Type: Int32See Also