forked from teambition/ratelimiter-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark_test.go
92 lines (78 loc) · 1.76 KB
/
benchmark_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
package ratelimiter_test
import (
"crypto/rand"
"encoding/hex"
"testing"
ratelimiter "github.com/teambition/ratelimiter-go"
)
func BenchmarkGet(b *testing.B) {
limiter := ratelimiter.New(ratelimiter.Options{})
policy := []int{1000000, 1000}
id := getUniqueID()
b.N = 100000
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
limiter.Get(id, policy...)
}
}
func BenchmarkGetAndEexceeding(b *testing.B) {
limiter := ratelimiter.New(ratelimiter.Options{})
policy := []int{100, 1000}
id := getUniqueID()
b.N = 100000
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
limiter.Get(id, policy...)
}
}
func BenchmarkGetAndParallel(b *testing.B) {
limiter := ratelimiter.New(ratelimiter.Options{})
policy := []int{1000000, 1000}
id := getUniqueID()
b.N = 100000
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
limiter.Get(id, policy...)
}
})
}
func BenchmarkGetAndClean(b *testing.B) {
limiter := ratelimiter.New(ratelimiter.Options{})
policy := []int{1000000, 1000}
id := getUniqueID()
b.N = 100000
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
limiter.Get(id, policy...)
}
//limiter.Clean()
})
}
func BenchmarkGetForDifferentUser(b *testing.B) {
limiter := ratelimiter.New(ratelimiter.Options{})
policy := []int{1, 10000}
b.N = 10000
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
id := getUniqueID()
limiter.Get(id, policy...)
}
//limiter.Clean()
})
}
func getUniqueID() string {
buf := make([]byte, 12)
_, err := rand.Read(buf)
if err != nil {
panic(err)
}
return hex.EncodeToString(buf)
}