List write bit flags.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
[FlagsAttribute] public enum ListWriteFlags
Members
Member name | Value | Description | |
---|---|---|---|
DEFAULT | 0 | Default. Allow duplicate values and insertions at any index. | |
ADD_UNIQUE | 1 | Only add unique values. | |
INSERT_BOUNDED | 2 | Enforce list boundaries when inserting. Do not allow values to be inserted at index outside current list boundaries. | |
NO_FAIL | 4 | Do not raise error if a list item fails due to write flag constraints. | |
PARTIAL | 8 | Allow other valid list items to be committed if a list item fails due to write flag constraints. |
See Also