-
Notifications
You must be signed in to change notification settings - Fork 1
/
bench_test.go
511 lines (486 loc) · 8.89 KB
/
bench_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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package phpserialize_test
import (
"fmt"
"runtime"
"strconv"
"testing"
"github.com/trim21/go-phpserialize"
)
func BenchmarkMarshal_type(b *testing.B) {
for _, data := range testCase {
data := data
b.Run(data.Name, func(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(data.Data)
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_field_as_string(b *testing.B) {
data := struct {
F int `php:",string"`
}{}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(data)
if err != nil {
b.FailNow()
}
}
})
}
func BenchmarkMarshal_ifce(b *testing.B) {
for _, data := range testCase {
data := data
b.Run(data.Name, func(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(data)
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_map_type(b *testing.B) {
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make(map[int]uint, i)
for j := 0; j < i; j++ {
m[j+1] = uint(j + 2)
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(m)
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_map_as_ifce(b *testing.B) {
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make(map[int]uint, i)
for j := 0; j < i; j++ {
m[j+1] = uint(j + 2)
}
b.RunParallel(func(pb *testing.PB) {
var v = struct{ Value any }{m}
for pb.Next() {
_, err := phpserialize.Marshal(v)
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_map_with_ifce_value(b *testing.B) {
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make(map[int]any, i)
for j := 0; j < i; j++ {
m[j+1] = uint(j + 2)
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(m)
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_slice_of_value(b *testing.B) {
type D struct {
Value []uint
}
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make([]uint, i)
for j := 0; j < i; j++ {
m[j] = uint(j + 2)
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(D{m})
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_ifce_slice_as_value(b *testing.B) {
type D struct {
Value any
}
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make([]uint, i)
for j := 0; j < i; j++ {
m[j] = uint(j + 2)
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(D{m})
if err != nil {
b.FailNow()
}
}
})
runtime.KeepAlive(m)
})
}
}
func BenchmarkMarshal_ifce_slice_of_type(b *testing.B) {
type D struct {
Value any
}
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make([]User, i)
for j := 0; j < i; j++ {
m[j] = User{ID: uint64(j + 2), Name: "u-" + strconv.Itoa(j+2)}
}
phpserialize.Marshal(D{Value: m}) // warm up
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(D{Value: m})
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_1_type_slice_of_type(b *testing.B) {
type D struct {
Value []User
}
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make([]User, i)
for j := 0; j < i; j++ {
m[j] = User{ID: uint64(j + 2), Name: "u-" + strconv.Itoa(j+2)}
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(D{Value: m})
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_1_ifce_slice_of_ifce(b *testing.B) {
type D struct {
Value any
}
for i := 1; i <= 1000; i = i * 10 {
i := i
b.Run(fmt.Sprintf("len-%d", i), func(b *testing.B) {
var m = make([]any, i)
for j := 0; j < i; j++ {
m[j] = User{ID: uint64(j + 2), Name: "u-" + strconv.Itoa(j+2)}
}
phpserialize.Marshal(D{Value: m}) // warm up
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(D{Value: m})
if err != nil {
b.FailNow()
}
}
})
})
}
}
func BenchmarkMarshal_large_struct_10(b *testing.B) {
var v struct {
Field0 bool
Field1 bool
Field2 bool
Field3 bool
Field4 bool
Field5 bool
Field6 bool
Field7 bool
Field8 bool
Field9 bool
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(v)
if err != nil {
b.FailNow()
}
}
})
}
func BenchmarkMarshal_large_struct_50(b *testing.B) {
var v struct {
Field0 bool
Field1 bool
Field2 bool
Field3 bool
Field4 bool
Field5 bool
Field6 bool
Field7 bool
Field8 bool
Field9 bool
Field10 bool
Field11 bool
Field12 bool
Field13 bool
Field14 bool
Field15 bool
Field16 bool
Field17 bool
Field18 bool
Field19 bool
Field20 bool
Field21 bool
Field22 bool
Field23 bool
Field24 bool
Field25 bool
Field26 bool
Field27 bool
Field28 bool
Field29 bool
Field30 bool
Field31 bool
Field32 bool
Field33 bool
Field34 bool
Field35 bool
Field36 bool
Field37 bool
Field38 bool
Field39 bool
Field40 bool
Field41 bool
Field42 bool
Field43 bool
Field44 bool
Field45 bool
Field46 bool
Field47 bool
Field48 bool
Field49 bool
}
for i := 0; i < b.N; i++ {
_, err := phpserialize.Marshal(v)
if err != nil {
b.FailNow()
}
}
}
func BenchmarkMarshal_large_struct_100(b *testing.B) {
var v struct {
Field0 bool
Field1 bool
Field2 bool
Field3 bool
Field4 bool
Field5 bool
Field6 bool
Field7 bool
Field8 bool
Field9 bool
Field10 bool
Field11 bool
Field12 bool
Field13 bool
Field14 bool
Field15 bool
Field16 bool
Field17 bool
Field18 bool
Field19 bool
Field20 bool
Field21 bool
Field22 bool
Field23 bool
Field24 bool
Field25 bool
Field26 bool
Field27 bool
Field28 bool
Field29 bool
Field30 bool
Field31 bool
Field32 bool
Field33 bool
Field34 bool
Field35 bool
Field36 bool
Field37 bool
Field38 bool
Field39 bool
Field40 bool
Field41 bool
Field42 bool
Field43 bool
Field44 bool
Field45 bool
Field46 bool
Field47 bool
Field48 bool
Field49 bool
Field50 bool
Field51 bool
Field52 bool
Field53 bool
Field54 bool
Field55 bool
Field56 bool
Field57 bool
Field58 bool
Field59 bool
Field60 bool
Field61 bool
Field62 bool
Field63 bool
Field64 bool
Field65 bool
Field66 bool
Field67 bool
Field68 bool
Field69 bool
Field70 bool
Field71 bool
Field72 bool
Field73 bool
Field74 bool
Field75 bool
Field76 bool
Field77 bool
Field78 bool
Field79 bool
Field80 bool
Field81 bool
Field82 bool
Field83 bool
Field84 bool
Field85 bool
Field86 bool
Field87 bool
Field88 bool
Field89 bool
Field90 bool
Field91 bool
Field92 bool
Field93 bool
Field94 bool
Field95 bool
Field96 bool
Field97 bool
Field98 bool
Field99 bool
}
for i := 0; i < b.N; i++ {
_, err := phpserialize.Marshal(v)
if err != nil {
b.FailNow()
}
}
}
func BenchmarkMarshal_int(b *testing.B) {
for i := 10; i <= 1000; i *= 10 {
i := i
b.Run(fmt.Sprintf("marshal int %d", i), func(b *testing.B) {
var s = make([]int, i)
for j := 0; j < i; j++ {
s[j] = j
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if _, err := phpserialize.Marshal(s); err != nil {
b.Fatal(err)
}
}
})
})
}
}
func BenchmarkMarshal_uint(b *testing.B) {
for i := 10; i <= 1000; i *= 10 {
var s = make([]uint, i)
for j := 0; j < i; j++ {
s[j] = uint(j)
}
b.Run(fmt.Sprintf("marshal uint %d", i), func(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
if _, err := phpserialize.Marshal(s); err != nil {
b.Fatal(err.Error())
}
}
})
})
}
}
func BenchmarkMarshal_many_map_field(b *testing.B) {
var s = struct {
Map1 map[string]int `php:"map_1"`
Map2 map[int]string `php:"map_2"`
Map3 map[uint]int `php:"map_3"`
}{
Map1: map[string]int{
"one": 1,
"two": 2,
"three": 3,
},
Map2: map[int]string{
1: "1111",
2: "2222",
3: "3333",
4: "4444",
5: "5555",
6: "6666",
},
Map3: map[uint]int{
1: 1111,
2: 2222,
3: 3333,
4: 4444,
5: 5555,
6: 6666,
},
}
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, err := phpserialize.Marshal(s)
if err != nil {
b.FailNow()
}
}
})
}