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
76 lines (66 loc) · 3.27 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
// Copyright 2013-2016 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
// 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:
// MaxUint32: Never expire for Aerospike 2 server versions >= 2.7.2 and Aerospike 3 server
// versions >= 3.1.4. Do not use -1 for older servers.
// 0: Default to namespace configuration variable "default-ttl" on the server.
// > 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
// 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
}
// 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,
}
}