-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmemcache_test.go
145 lines (120 loc) · 2.97 KB
/
memcache_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
package dory
import (
"math/rand"
"testing"
"github.com/stretchr/testify/assert"
)
const (
keySize = 16
valSize = 64
)
func putString(c *Memcache, key, val string) {
c.Put([]byte(key), []byte(val))
}
func getString(c *Memcache, key string) string {
return string(c.Get([]byte(key), nil))
}
func hasString(c *Memcache, key string) bool {
return c.Has([]byte(key))
}
func deleteString(c *Memcache, key string) {
c.Delete([]byte(key))
}
func TestMemcache_HashCollisions(t *testing.T) {
opts := MemcacheOptions{
HashFunction: func(b []byte) uint64 {
// Designated, sufficiently random number
return 7
},
}
c := NewMemcache(opts)
assert.False(t, hasString(c, "foo"))
assert.False(t, hasString(c, "bar"))
assert.False(t, hasString(c, "baz"))
putString(c, "foo", "11")
putString(c, "bar", "22")
assert.True(t, hasString(c, "foo"))
assert.True(t, hasString(c, "bar"))
assert.False(t, hasString(c, "baz"))
assert.Equal(t, "11", getString(c, "foo"))
assert.Equal(t, "22", getString(c, "bar"))
assert.Equal(t, "", getString(c, "baz"))
deleteString(c, "foo")
assert.False(t, hasString(c, "foo"))
assert.True(t, hasString(c, "bar"))
assert.False(t, hasString(c, "baz"))
assert.Equal(t, "", getString(c, "foo"))
assert.Equal(t, "22", getString(c, "bar"))
assert.Equal(t, "", getString(c, "baz"))
putString(c, "baz", "33")
putString(c, "foo", "44")
assert.True(t, hasString(c, "foo"))
assert.True(t, hasString(c, "bar"))
assert.True(t, hasString(c, "baz"))
assert.Equal(t, "44", getString(c, "foo"))
assert.Equal(t, "22", getString(c, "bar"))
assert.Equal(t, "33", getString(c, "baz"))
deleteString(c, "baz")
deleteString(c, "foo")
assert.False(t, hasString(c, "foo"))
assert.True(t, hasString(c, "bar"))
assert.False(t, hasString(c, "baz"))
assert.Equal(t, "", getString(c, "foo"))
assert.Equal(t, "22", getString(c, "bar"))
assert.Equal(t, "", getString(c, "baz"))
}
func BenchmarkMemcacheGet(b *testing.B) {
const numVal = 100000
opts := MemcacheOptions{
TableSize: 128 * 1024,
}
c := NewMemcache(opts)
values := make(map[string]bool, numVal)
var keyBuf [keySize]byte
var valBuf [valSize]byte
for i := 0; i < numVal; i++ {
rand.Read(keyBuf[:])
rand.Read(valBuf[:])
c.Put(keyBuf[:], valBuf[:])
values[string(keyBuf[:])] = true
}
b.ResetTimer()
b.ReportAllocs()
for i := 0; i < b.N; {
for k := range values {
if i > b.N {
break
}
i++
key := append(keyBuf[:0], k...)
c.Get(key, valBuf[:0])
}
}
}
func BenchmarkMemcachePut(b *testing.B) {
const numVal = 100000
opts := MemcacheOptions{
TableSize: 1024 * 1024,
}
c := NewMemcache(opts)
values := make(map[string][]byte, numVal)
var keyBuf [keySize]byte
for i := 0; i < numVal; i++ {
rand.Read(keyBuf[:])
val := make([]byte, valSize)
rand.Read(val)
values[string(keyBuf[:])] = val
}
b.ResetTimer()
b.ReportAllocs()
for i := 0; i < b.N; {
for k, v := range values {
if i > b.N {
break
}
i++
key := append(keyBuf[:0], k...)
c.Put(key, v)
}
}
}