#include <stdbool.h>
#include <stdint.h>
#include <aerospike/as_bin.h>
Go to the source code of this file.
|
enum | as_operator {
AS_OPERATOR_WRITE = 0,
AS_OPERATOR_READ = 1,
AS_OPERATOR_INCR = 2,
AS_OPERATOR_PREPEND = 4,
AS_OPERATOR_APPEND = 5,
AS_OPERATOR_TOUCH = 8,
AS_OPERATOR_WRITE = 0,
AS_OPERATOR_READ = 1,
AS_OPERATOR_INCR = 2,
AS_OPERATOR_PREPEND = 4,
AS_OPERATOR_APPEND = 5,
AS_OPERATOR_TOUCH = 8
} |
|
Operation Identifiers
Enumerator |
---|
AS_OPERATOR_WRITE |
Update the bin.
|
AS_OPERATOR_READ |
Return the bin from the cluster.
|
AS_OPERATOR_INCR |
Increment a bin containing an integer value.
|
AS_OPERATOR_PREPEND |
Prepend bytes to the bin containing either a string or blob.
|
AS_OPERATOR_APPEND |
Append bytes to the bin containing either a string or blob.
|
AS_OPERATOR_TOUCH |
Touch the record's ttl.
|
AS_OPERATOR_WRITE |
Update the bin.
|
AS_OPERATOR_READ |
Return the bin from the cluster.
|
AS_OPERATOR_INCR |
Increment a bin containing an integer value.
|
AS_OPERATOR_PREPEND |
Prepend bytes to the bin containing either a string or blob.
|
AS_OPERATOR_APPEND |
Append bytes to the bin containing either a string or blob.
|
AS_OPERATOR_TOUCH |
Touch the record's ttl.
|
Definition at line 36 of file src/include/aerospike/as_operations.h.