This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
forked from aerospike/aerospike-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
write_policy.go
92 lines (79 loc) · 4.07 KB
/
write_policy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Copyright 2013-2017 Aerospike, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package aerospike
import "math"
const (
// TTLServerDefault will default to namespace configuration variable "default-ttl" on the server.
TTLServerDefault = 0
// TTLDontExpire will never expire for Aerospike 2 server versions >= 2.7.2 and Aerospike 3 server.
TTLDontExpire = math.MaxUint32
// TTLDontUpdate will not change the record's ttl when record is written. Supported by Aerospike server versions >= 3.10.1
TTLDontUpdate = math.MaxUint32 - 1
)
// WritePolicy encapsulates parameters for policy attributes used in write operations.
// This object is passed into methods where database writes can occur.
type WritePolicy struct {
BasePolicy
// RecordExistsAction qualifies how to handle writes where the record already exists.
RecordExistsAction RecordExistsAction //= RecordExistsAction.UPDATE;
// GenerationPolicy qualifies how to handle record writes based on record generation. The default (NONE)
// indicates that the generation is not used to restrict writes.
GenerationPolicy GenerationPolicy //= GenerationPolicy.NONE;
// Desired consistency guarantee when committing a transaction on the server. The default
// (COMMIT_ALL) indicates that the server should wait for master and all replica commits to
// be successful before returning success to the client.
CommitLevel CommitLevel //= COMMIT_ALL
// Generation determines expected generation.
// Generation is the number of times a record has been
// modified (including creation) on the server.
// If a write operation is creating a record, the expected generation would be 0.
Generation uint32
// Expiration determines record expiration in seconds. Also known as TTL (Time-To-Live).
// Seconds record will live before being removed by the server.
// Expiration values:
// TTLServerDefault (0): Default to namespace configuration variable "default-ttl" on the server.
// TTLDontExpire (MaxUint32): Never expire for Aerospike 2 server versions >= 2.7.2 and Aerospike 3 server
// TTLDontUpdate (MaxUint32 - 1): Do not change ttl when record is written. Supported by Aerospike server versions >= 3.10.1
// > 0: Actual expiration in seconds.
Expiration uint32
// Send user defined key in addition to hash digest on a record put.
// The default is to not send the user defined key.
SendKey bool
// RespondPerEachOp defines for client.Operate() method, return a result for every operation.
// Some list operations do not return results by default (ListClearOp() for example).
// This can sometimes make it difficult to determine the desired result offset in the returned
// bin's result list.
//
// Setting RespondPerEachOp to true makes it easier to identify the desired result offset
// (result offset equals bin's operate sequence). This only makes sense when multiple list
// operations are used in one operate call and some of those operations do not return results
// by default.
RespondPerEachOp bool
// DurableDelete leaves a tombstone for the record if the transaction results in a record deletion.
// This prevents deleted records from reappearing after node failures.
// Valid for Aerospike Server Enterprise Edition 4+ only.
DurableDelete bool
}
// NewWritePolicy initializes a new WritePolicy instance with default parameters.
func NewWritePolicy(generation, expiration uint32) *WritePolicy {
return &WritePolicy{
BasePolicy: *NewPolicy(),
RecordExistsAction: UPDATE,
GenerationPolicy: NONE,
CommitLevel: COMMIT_ALL,
Generation: generation,
Expiration: expiration,
SendKey: false,
}
}