-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathexample_client_test.go
200 lines (161 loc) · 4.08 KB
/
example_client_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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package redis_bloom_go_test
import (
"fmt"
"log"
redisbloom "github.com/RedisBloom/redisbloom-go"
"github.com/gomodule/redigo/redis"
)
// exemplifies the NewClient function
func ExampleNewClient() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
// BF.ADD mytest item
_, err := client.Add("mytest", "myItem")
if err != nil {
fmt.Println("Error:", err)
}
exists, err := client.Exists("mytest", "myItem")
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println("myItem exists in mytest: ", exists)
// Output: myItem exists in mytest: true
}
// exemplifies the NewClientFromPool function
func ExampleNewClientFromPool() {
host := "localhost:6379"
password := ""
pool := &redis.Pool{Dial: func() (redis.Conn, error) {
return redis.Dial("tcp", host, redis.DialPassword(password))
}}
client := redisbloom.NewClientFromPool(pool, "bloom-client-1")
// BF.ADD mytest item
_, err := client.Add("mytest", "myItem")
if err != nil {
log.Fatalf("Error: %v", err)
}
exists, err := client.Exists("mytest", "myItem")
if err != nil {
log.Fatalf("Error: %v", err)
}
fmt.Println("myItem exists in mytest: ", exists)
// Output: myItem exists in mytest: true
}
// exemplifies the TdCreate function
func ExampleClient_TdCreate() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
client.FlushAll()
ret, err := client.TdCreate("key", 100)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println(ret)
// Output: OK
}
// exemplifies the TdAdd function
func ExampleClient_TdAdd() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
client.FlushAll()
key := "example"
ret, err := client.TdCreate(key, 100)
if err != nil {
fmt.Println("Error:", err)
}
samples := map[float64]float64{1.0: 1.0, 2.0: 2.0}
ret, err = client.TdAdd(key, samples)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println(ret)
// Output: OK
}
// exemplifies the TdMin function
func ExampleClient_TdMin() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
client.FlushAll()
key := "example"
_, err := client.TdCreate(key, 10)
if err != nil {
fmt.Println("Error:", err)
}
samples := map[float64]float64{1.0: 1.0, 2.0: 2.0, 3.0: 3.0}
_, err = client.TdAdd(key, samples)
if err != nil {
fmt.Println("Error:", err)
}
min, err := client.TdMin(key)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println(min)
// Output: 1
}
// exemplifies the TdMax function
func ExampleClient_TdMax() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
client.FlushAll()
key := "example"
_, err := client.TdCreate(key, 10)
if err != nil {
fmt.Println("Error:", err)
}
samples := map[float64]float64{1.0: 1.0, 2.0: 2.0, 3.0: 3.0}
_, err = client.TdAdd(key, samples)
if err != nil {
fmt.Println("Error:", err)
}
max, err := client.TdMax(key)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println(max)
// Output: 3
}
// exemplifies the TdQuantile function
func ExampleClient_TdQuantile() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
client.FlushAll()
key := "example"
_, err := client.TdCreate(key, 10)
if err != nil {
fmt.Println("Error:", err)
}
samples := map[float64]float64{1.0: 1.0, 2.0: 1.0, 3.0: 1.0, 4.0: 1.0, 5.0: 1.0}
_, err = client.TdAdd(key, samples)
if err != nil {
fmt.Println("Error:", err)
}
ans, err := client.TdQuantile(key, 1.0)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println(ans)
// Output: [5]
}
// exemplifies the TdCdf function
func ExampleClient_TdCdf() {
host := "localhost:6379"
var client = redisbloom.NewClient(host, "nohelp", nil)
client.FlushAll()
key := "example"
_, err := client.TdCreate(key, 10)
if err != nil {
fmt.Println("Error:", err)
}
samples := map[float64]float64{1.0: 1.0, 2.0: 1.0, 3.0: 1.0, 4.0: 1.0, 5.0: 1.0}
_, err = client.TdAdd(key, samples)
if err != nil {
fmt.Println("Error:", err)
}
cdf, err := client.TdCdf(key, 1.0)
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println(cdf)
// Output: [0.2]
}