-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopts.go
167 lines (144 loc) · 2.86 KB
/
opts.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package mc
import (
"time"
"github.com/dgryski/go-ketama"
)
const (
DefaultTimeout = 200 * time.Millisecond
DefaultConnMaxLifetime = time.Minute
DefaultMaxIdleConnsPerAddr = 10
)
type Options struct {
Addrs []string
PickServer func(key string) []string
DialTimeout time.Duration
ConnMaxLifetime time.Duration
MaxIdleConnsPerAddr int
DisableBinaryEncodedKeys bool
Compression struct {
Compress func([]byte) ([]byte, error)
Decompress func([]byte) ([]byte, error)
}
}
func (o *Options) setDefaults() error {
if o.DialTimeout == 0 {
o.DialTimeout = DefaultTimeout
}
/*if o.ReadTimeout == 0 {
o.ReadTimeout = DefaultTimeout
}
if o.WriteTimeout == 0 {
o.WriteTimeout = DefaultTimeout
}*/
if o.ConnMaxLifetime == 0 {
o.ConnMaxLifetime = DefaultConnMaxLifetime
}
if o.MaxIdleConnsPerAddr == 0 {
o.MaxIdleConnsPerAddr = DefaultMaxIdleConnsPerAddr
}
if o.PickServer == nil && len(o.Addrs) != 0 {
buckets := make([]ketama.Bucket, 0, len(o.Addrs))
for _, s := range o.Addrs {
buckets = append(buckets, ketama.Bucket{
Label: s,
Weight: 1,
})
}
hash, err := ketama.New(buckets)
if err != nil {
return err
}
o.PickServer = func(key string) []string {
return hash.HashMultiple(key, len(o.Addrs))
}
}
return nil
}
type (
MgOption func(c *mgOpts)
MsOption func(c *msOpts)
MdOption func(c *mdOpts)
MaOption func(c *maOpts)
)
type (
mgOpts struct {
cas bool
hit bool
opaque int
deadline time.Time
lastAccess bool
earlyRecache int
}
msOpts struct {
namespace string
minUses uint64
expiration uint32
compressionMinLen int
}
mdOpts struct {
expiration uint32
}
maOpts struct {
initialValue uint64
}
)
// Get
func WithCAS() MgOption {
return func(c *mgOpts) {
c.cas = true
}
}
func WithHit() MgOption {
return func(c *mgOpts) {
c.hit = true
}
}
func WithDeadline(t time.Time) MgOption {
return func(c *mgOpts) {
c.deadline = t
}
}
func WithLastAccess() MgOption {
return func(c *mgOpts) {
c.lastAccess = true
}
}
func WithEarlyRecache(seconds int) MgOption {
return func(c *mgOpts) {
c.earlyRecache = seconds
}
}
// Set
func WithMinUses(number uint64) MsOption {
return func(c *msOpts) {
c.minUses = number
}
}
func WithNamespace(ns string) MsOption {
return func(c *msOpts) {
c.namespace = ns
}
}
func WithExpiration(seconds uint32) MsOption {
return func(c *msOpts) {
c.expiration = seconds
}
}
func WithCompression(minLen int) MsOption {
return func(c *msOpts) {
c.compressionMinLen = minLen
}
}
// Arithmetic
func WithInitialValue(v uint64) MaOption {
return func(c *maOpts) {
c.initialValue = v
}
}
// Del
// mark as stale
func WithInvalidate(seconds uint32) MdOption {
return func(c *mdOpts) {
c.expiration = seconds
}
}