forked from dropbox/godropbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
124 lines (108 loc) · 2.41 KB
/
example_test.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
package memcache_test
import (
"fmt"
"hash/crc32"
"net"
"github.com/dropbox/godropbox/memcache"
"github.com/dropbox/godropbox/net2"
)
func ExampleRawClient() {
conn, _ := net.Dial("tcp", "localhost:11211")
client := memcache.NewRawClient(0, conn)
get := func(key string) {
resp := client.Get(key)
fmt.Println("Get", resp.Key())
fmt.Println(
" Status:",
resp.Status(),
"-",
memcache.NewStatusCodeError(resp.Status()))
fmt.Println(" Error:", resp.Error())
fmt.Println(" Value:", resp.Value())
}
set := func(item *memcache.Item) {
resp := client.Set(item)
fmt.Println("Set", resp.Key())
fmt.Println(
" Status:",
resp.Status(),
"-",
memcache.NewStatusCodeError(resp.Status()))
fmt.Println(" Error:", resp.Error())
}
del := func(key string) {
resp := client.Delete(key)
fmt.Println("Delete", resp.Key())
fmt.Println(
" Status:",
resp.Status(),
"-",
memcache.NewStatusCodeError(resp.Status()))
fmt.Println(" Error:", resp.Error())
}
item := memcache.Item{
Key: "bar",
Value: []byte("Hello World"),
Flags: uint32(123),
}
get("foo")
get("bar")
set(&item)
get("bar")
del("bar")
get("bar")
}
func ExampleShardedClient() {
options := net2.ConnectionOptions{
MaxActiveConnections: 4,
}
manager := memcache.NewStaticShardManager(
[]string{"localhost:11211", "localhost:11212"},
func(key string, numShard int) int {
return int(crc32.ChecksumIEEE([]byte(key))) % 2
},
options)
client := memcache.NewShardedClient(manager)
get := func(key string) {
resp := client.Get(key)
fmt.Println("Get", resp.Key())
fmt.Println(
" Status:",
resp.Status(),
"-",
memcache.NewStatusCodeError(resp.Status()))
fmt.Println(" Error:", resp.Error())
fmt.Println(" Value:", string(resp.Value()))
}
set := func(item *memcache.Item) {
resp := client.Set(item)
fmt.Println("Set", resp.Key())
fmt.Println(
" Status:",
resp.Status(),
"-",
memcache.NewStatusCodeError(resp.Status()))
fmt.Println(" Error:", resp.Error())
}
del := func(key string) {
resp := client.Delete(key)
fmt.Println("Delete", resp.Key())
fmt.Println(
" Status:",
resp.Status(),
"-",
memcache.NewStatusCodeError(resp.Status()))
fmt.Println(" Error:", resp.Error())
}
item := memcache.Item{
Key: "bar",
Value: []byte("Hello World"),
Flags: uint32(123),
}
get("foo")
get("bar")
set(&item)
get("bar")
del("bar")
get("bar")
}