@@ -43,7 +43,7 @@ If you\'re interested in new programming languages, you should definitely take a
43
43
44
44
## Benchmark Results
45
45
46
- Golang Version: [ go version go1.21.5 darwin/arm64] ( https://tip.golang.org/doc/go1.21 )
46
+ Golang Version: [ go version go1.22.0 darwin/arm64] ( https://tip.golang.org/doc/go1.22 )
47
47
Hardware Spec: [ Apple MacBook Pro 16-Inch M2 Max 2023] ( https://support.apple.com/kb/SP890 ) [ (?)] ( https://everymac.com/systems/apple/macbook_pro/specs/macbook-pro-m2-max-12-core-cpu-30-core-gpu-16-2023-specs.html ) [ (buy)] ( https://amzn.to/3K80lP4 )
48
48
49
49
### base64
@@ -95,10 +95,10 @@ func BenchmarkBase64regex(b *testing.B) {
95
95
$ go test -bench . -benchmem
96
96
goos: darwin
97
97
goarch: arm64
98
- BenchmarkBase64decode-12 20840026 56.71 ns/op 32 B/op 2 allocs/op
99
- BenchmarkBase64regex-12 127686 9420 ns/op 21502 B/op 198 allocs/op
98
+ BenchmarkBase64decode-12 22690968 53.19 ns/op 32 B/op 2 allocs/op
99
+ BenchmarkBase64regex-12 123316 9634 ns/op 21937 B/op 198 allocs/op
100
100
PASS
101
- ok _/Users/simonwaldherr/git/golang-benchmarks/base64 3.625s
101
+ ok _/Users/simonwaldherr/git/golang-benchmarks/base64 3.598s
102
102
```
103
103
104
104
### between
@@ -190,12 +190,12 @@ func BenchmarkFulltextParse(b *testing.B) {
190
190
$ go test -bench . -benchmem
191
191
goos: darwin
192
192
goarch: arm64
193
- BenchmarkNumberRegEx-12 175806 6500 ns/op 16217 B/op 142 allocs/op
194
- BenchmarkFulltextRegEx-12 224685 5422 ns/op 11684 B/op 104 allocs/op
195
- BenchmarkNumberParse-12 33828783 36.60 ns/op 0 B/op 0 allocs/op
196
- BenchmarkFulltextParse-12 2517451 482.9 ns/op 32 B/op 2 allocs/op
193
+ BenchmarkNumberRegEx-12 180219 6571 ns/op 16888 B/op 142 allocs/op
194
+ BenchmarkFulltextRegEx-12 221482 5402 ns/op 12094 B/op 104 allocs/op
195
+ BenchmarkNumberParse-12 33574416 35.67 ns/op 0 B/op 0 allocs/op
196
+ BenchmarkFulltextParse-12 2587308 467.2 ns/op 32 B/op 2 allocs/op
197
197
PASS
198
- ok _/Users/simonwaldherr/git/golang-benchmarks/between 6.611s
198
+ ok _/Users/simonwaldherr/git/golang-benchmarks/between 6.524s
199
199
```
200
200
201
201
### caseinsensitivecompare
@@ -237,11 +237,11 @@ func BenchmarkToLower(b *testing.B) {
237
237
$ go test -bench . -benchmem
238
238
goos: darwin
239
239
goarch: arm64
240
- BenchmarkEqualFold-12 82331166 13.98 ns/op 0 B/op 0 allocs/op
241
- BenchmarkToUpper-12 10878864 107.8 ns/op 16 B/op 3 allocs/op
242
- BenchmarkToLower-12 8704466 139.8 ns/op 20 B/op 5 allocs/op
240
+ BenchmarkEqualFold-12 84816313 14.03 ns/op 0 B/op 0 allocs/op
241
+ BenchmarkToUpper-12 11181378 105.9 ns/op 16 B/op 3 allocs/op
242
+ BenchmarkToLower-12 8854078 135.7 ns/op 20 B/op 5 allocs/op
243
243
PASS
244
- ok _/Users/simonwaldherr/git/golang-benchmarks/caseinsensitivecompare 4.719s
244
+ ok _/Users/simonwaldherr/git/golang-benchmarks/caseinsensitivecompare 4.694s
245
245
```
246
246
247
247
### concat
@@ -287,11 +287,11 @@ func BenchmarkConcatBuilder(b *testing.B) {
287
287
$ go test -bench . -benchmem
288
288
goos: darwin
289
289
goarch: arm64
290
- BenchmarkConcatString-12 1000000 32765 ns/op 503994 B/op 1 allocs/op
291
- BenchmarkConcatBuffer-12 320170188 3.851 ns/op 3 B/op 0 allocs/op
292
- BenchmarkConcatBuilder-12 573719577 2.311 ns/op 5 B/op 0 allocs/op
290
+ BenchmarkConcatString-12 1000000 23822 ns/op 503993 B/op 1 allocs/op
291
+ BenchmarkConcatBuffer-12 325990952 3.814 ns/op 3 B/op 0 allocs/op
292
+ BenchmarkConcatBuilder-12 566374242 2.251 ns/op 5 B/op 0 allocs/op
293
293
PASS
294
- ok _/Users/simonwaldherr/git/golang-benchmarks/concat 36.104s
294
+ ok _/Users/simonwaldherr/git/golang-benchmarks/concat 27.094s
295
295
```
296
296
297
297
### contains
@@ -441,16 +441,16 @@ func BenchmarkMatchNot(b *testing.B) {
441
441
$ go test -bench . -benchmem
442
442
goos: darwin
443
443
goarch: arm64
444
- BenchmarkContains-12 248208566 4.871 ns/op 0 B/op 0 allocs/op
445
- BenchmarkContainsNot-12 197121086 5.910 ns/op 0 B/op 0 allocs/op
446
- BenchmarkContainsBytes-12 240872742 5.064 ns/op 0 B/op 0 allocs/op
447
- BenchmarkContainsBytesNot-12 195765949 6.129 ns/op 0 B/op 0 allocs/op
448
- BenchmarkCompileMatch-12 24799729 48.14 ns/op 0 B/op 0 allocs/op
449
- BenchmarkCompileMatchNot-12 52000764 23.92 ns/op 0 B/op 0 allocs/op
450
- BenchmarkMatch-12 1644446 713.3 ns/op 1398 B/op 17 allocs/op
451
- BenchmarkMatchNot-12 1773174 656.2 ns/op 1398 B/op 17 allocs/op
444
+ BenchmarkContains-12 246624096 4.720 ns/op 0 B/op 0 allocs/op
445
+ BenchmarkContainsNot-12 208014148 5.825 ns/op 0 B/op 0 allocs/op
446
+ BenchmarkContainsBytes-12 239591714 5.025 ns/op 0 B/op 0 allocs/op
447
+ BenchmarkContainsBytesNot-12 197281825 6.185 ns/op 0 B/op 0 allocs/op
448
+ BenchmarkCompileMatch-12 24915670 47.27 ns/op 0 B/op 0 allocs/op
449
+ BenchmarkCompileMatchNot-12 49589082 24.75 ns/op 0 B/op 0 allocs/op
450
+ BenchmarkMatch-12 1670902 716.0 ns/op 1400 B/op 17 allocs/op
451
+ BenchmarkMatchNot-12 1739562 686.4 ns/op 1400 B/op 17 allocs/op
452
452
PASS
453
- ok _/Users/simonwaldherr/git/golang-benchmarks/contains 13.443s
453
+ ok _/Users/simonwaldherr/git/golang-benchmarks/contains 13.438s
454
454
```
455
455
456
456
### foreach
@@ -537,12 +537,12 @@ func BenchmarkRangeSliceKey(b *testing.B) {
537
537
$ go test -bench . -benchmem
538
538
goos: darwin
539
539
goarch: arm64
540
- BenchmarkForMap-12 60287694 19.62 ns/op 0 B/op 0 allocs/op
541
- BenchmarkRangeMap-12 25264066 46.11 ns/op 0 B/op 0 allocs/op
542
- BenchmarkRangeSlice-12 465727620 2.631 ns/op 0 B/op 0 allocs/op
543
- BenchmarkRangeSliceKey-12 461361679 2.682 ns/op 0 B/op 0 allocs/op
540
+ BenchmarkForMap-12 60644628 19.54 ns/op 0 B/op 0 allocs/op
541
+ BenchmarkRangeMap-12 23501090 50.94 ns/op 0 B/op 0 allocs/op
542
+ BenchmarkRangeSlice-12 465120560 2.580 ns/op 0 B/op 0 allocs/op
543
+ BenchmarkRangeSliceKey-12 465038697 2.616 ns/op 0 B/op 0 allocs/op
544
544
PASS
545
- ok _/Users/simonwaldherr/git/golang-benchmarks/foreach 6.319s
545
+ ok _/Users/simonwaldherr/git/golang-benchmarks/foreach 6.199s
546
546
```
547
547
548
548
### hash
@@ -749,37 +749,37 @@ func BenchmarkSHA256Parallel(b *testing.B) {
749
749
$ go test -bench . -benchmem
750
750
goos: darwin
751
751
goarch: arm64
752
- BenchmarkAdler32-12 1785740 650.7 ns/op 8 B/op 1 allocs/op
753
- BenchmarkBCryptCost4-12 635139488 1.921 ns/op 0 B/op 0 allocs/op
754
- BenchmarkBCryptCost10-12 639310113 1.957 ns/op 0 B/op 0 allocs/op
755
- BenchmarkBCryptCost16-12 606271753 1.950 ns/op 0 B/op 0 allocs/op
756
- BenchmarkBlake2b256-12 478315 2491 ns/op 32 B/op 1 allocs/op
757
- BenchmarkBlake2b512-12 485422 2459 ns/op 64 B/op 1 allocs/op
758
- BenchmarkBlake3256-12 422632 2936 ns/op 64 B/op 2 allocs/op
759
- BenchmarkMMH3-12 3611425 327 .5 ns/op 16 B/op 1 allocs/op
760
- BenchmarkCRC32-12 5082070 235.6 ns/op 8 B/op 1 allocs/op
761
- BenchmarkCRC64ISO-12 983139 1207 ns/op 8 B/op 1 allocs/op
762
- BenchmarkCRC64ECMA-12 990122 1260 ns/op 8 B/op 1 allocs/op
763
- BenchmarkFnv32-12 496581 2396 ns/op 8 B/op 1 allocs/op
764
- BenchmarkFnv32a-12 514605 2317 ns/op 8 B/op 1 allocs/op
765
- BenchmarkFnv64-12 516794 2316 ns/op 8 B/op 1 allocs/op
766
- BenchmarkFnv64a-12 516573 2380 ns/op 8 B/op 1 allocs/op
767
- BenchmarkFnv128-12 300181 3984 ns/op 16 B/op 1 allocs/op
768
- BenchmarkFnv128a-12 483355 2423 ns/op 16 B/op 1 allocs/op
769
- BenchmarkMD4-12 426765 2836 ns/op 24 B/op 2 allocs/op
770
- BenchmarkMD5-12 397560 3004 ns/op 16 B/op 1 allocs/op
771
- BenchmarkSHA1-12 1390654 869.6 ns/op 24 B/op 1 allocs/op
772
- BenchmarkSHA224-12 1396154 842 .3 ns/op 32 B/op 1 allocs/op
773
- BenchmarkSHA256-12 1426485 856.9 ns/op 32 B/op 1 allocs/op
774
- BenchmarkSHA384-12 804523 1486 ns/op 48 B/op 1 allocs/op
775
- BenchmarkSHA512-12 773077 1436 ns/op 64 B/op 1 allocs/op
776
- BenchmarkSHA3256-12 238112 5145 ns/op 480 B/op 2 allocs/op
777
- BenchmarkSHA3512-12 135817 9078 ns/op 512 B/op 2 allocs/op
778
- BenchmarkRIPEMD160-12 197322 6144 ns/op 24 B/op 1 allocs/op
779
- BenchmarkWhirlpool-12 46051 26439 ns/op 64 B/op 1 allocs/op
780
- BenchmarkSHA256Parallel-12 13431037 91.24 ns/op 32 B/op 1 allocs/op
752
+ BenchmarkAdler32-12 1832005 642.0 ns/op 8 B/op 1 allocs/op
753
+ BenchmarkBCryptCost4-12 622344232 1.939 ns/op 0 B/op 0 allocs/op
754
+ BenchmarkBCryptCost10-12 617344153 1.940 ns/op 0 B/op 0 allocs/op
755
+ BenchmarkBCryptCost16-12 610554968 1.933 ns/op 0 B/op 0 allocs/op
756
+ BenchmarkBlake2b256-12 485202 2458 ns/op 32 B/op 1 allocs/op
757
+ BenchmarkBlake2b512-12 477847 2474 ns/op 64 B/op 1 allocs/op
758
+ BenchmarkBlake3256-12 413876 2857 ns/op 64 B/op 2 allocs/op
759
+ BenchmarkMMH3-12 3728374 322 .5 ns/op 16 B/op 1 allocs/op
760
+ BenchmarkCRC32-12 4956696 237.7 ns/op 8 B/op 1 allocs/op
761
+ BenchmarkCRC64ISO-12 988246 1211 ns/op 8 B/op 1 allocs/op
762
+ BenchmarkCRC64ECMA-12 989850 1214 ns/op 8 B/op 1 allocs/op
763
+ BenchmarkFnv32-12 513014 2331 ns/op 8 B/op 1 allocs/op
764
+ BenchmarkFnv32a-12 518250 2319 ns/op 8 B/op 1 allocs/op
765
+ BenchmarkFnv64-12 515239 2321 ns/op 8 B/op 1 allocs/op
766
+ BenchmarkFnv64a-12 512271 2328 ns/op 8 B/op 1 allocs/op
767
+ BenchmarkFnv128-12 314017 3836 ns/op 16 B/op 1 allocs/op
768
+ BenchmarkFnv128a-12 496381 2481 ns/op 16 B/op 1 allocs/op
769
+ BenchmarkMD4-12 417538 2854 ns/op 24 B/op 2 allocs/op
770
+ BenchmarkMD5-12 404918 2934 ns/op 16 B/op 1 allocs/op
771
+ BenchmarkSHA1-12 1415151 828.7 ns/op 24 B/op 1 allocs/op
772
+ BenchmarkSHA224-12 1459034 835 .3 ns/op 32 B/op 1 allocs/op
773
+ BenchmarkSHA256-12 1430587 838.0 ns/op 32 B/op 1 allocs/op
774
+ BenchmarkSHA384-12 835683 1447 ns/op 48 B/op 1 allocs/op
775
+ BenchmarkSHA512-12 824522 1452 ns/op 64 B/op 1 allocs/op
776
+ BenchmarkSHA3256-12 235770 5189 ns/op 480 B/op 2 allocs/op
777
+ BenchmarkSHA3512-12 131142 9105 ns/op 512 B/op 2 allocs/op
778
+ BenchmarkRIPEMD160-12 198018 5949 ns/op 24 B/op 1 allocs/op
779
+ BenchmarkWhirlpool-12 45537 26392 ns/op 64 B/op 1 allocs/op
780
+ BenchmarkSHA256Parallel-12 12736846 95.40 ns/op 32 B/op 1 allocs/op
781
781
PASS
782
- ok _/Users/simonwaldherr/git/golang-benchmarks/hash 40.383s
782
+ ok _/Users/simonwaldherr/git/golang-benchmarks/hash 40.163s
783
783
```
784
784
785
785
### index
@@ -888,12 +888,12 @@ func BenchmarkMapIntIndex(b *testing.B) {
888
888
$ go test -bench . -benchmem
889
889
goos: darwin
890
890
goarch: arm64
891
- BenchmarkMapStringKeys-12 18892195 63.28 ns/op 0 B/op 0 allocs/op
892
- BenchmarkMapIntKeys-12 42557409 26.74 ns/op 0 B/op 0 allocs/op
893
- BenchmarkMapStringIndex-12 24523098 45.95 ns/op 0 B/op 0 allocs/op
894
- BenchmarkMapIntIndex-12 31626038 34.92 ns/op 0 B/op 0 allocs/op
891
+ BenchmarkMapStringKeys-12 21903754 47.97 ns/op 0 B/op 0 allocs/op
892
+ BenchmarkMapIntKeys-12 42697788 25.95 ns/op 0 B/op 0 allocs/op
893
+ BenchmarkMapStringIndex-12 23821516 47.70 ns/op 0 B/op 0 allocs/op
894
+ BenchmarkMapIntIndex-12 47902009 25.29 ns/op 0 B/op 0 allocs/op
895
895
PASS
896
- ok _/Users/simonwaldherr/git/golang-benchmarks/index 6.628s
896
+ ok _/Users/simonwaldherr/git/golang-benchmarks/index 6.559s
897
897
```
898
898
899
899
### json
@@ -984,10 +984,10 @@ func BenchmarkJsonUnmarshal(b *testing.B) {
984
984
$ go test -bench . -benchmem
985
985
goos: darwin
986
986
goarch: arm64
987
- BenchmarkJsonMarshal-12 1663761 675.8 ns/op 480 B/op 5 allocs/op
988
- BenchmarkJsonUnmarshal-12 332768 3573 ns/op 1912 B/op 34 allocs/op
987
+ BenchmarkJsonMarshal-12 1668337 714.1 ns/op 480 B/op 5 allocs/op
988
+ BenchmarkJsonUnmarshal-12 344632 3440 ns/op 1816 B/op 27 allocs/op
989
989
PASS
990
- ok _/Users/simonwaldherr/git/golang-benchmarks/json 3.239s
990
+ ok _/Users/simonwaldherr/git/golang-benchmarks/json 3.287s
991
991
```
992
992
993
993
### math
@@ -1070,16 +1070,16 @@ func BenchmarkMathFloat64(b *testing.B) {
1070
1070
$ go test -bench . -benchmem
1071
1071
goos: darwin
1072
1072
goarch: arm64
1073
- BenchmarkMathInt8-12 1000000000 0.3045 ns/op 0 B/op 0 allocs/op
1074
- BenchmarkMathInt32-12 1000000000 0.2995 ns/op 0 B/op 0 allocs/op
1075
- BenchmarkMathInt64-12 1000000000 0.2949 ns/op 0 B/op 0 allocs/op
1076
- BenchmarkMathAtomicInt32-12 293421100 4.142 ns/op 0 B/op 0 allocs/op
1077
- BenchmarkMathAtomicInt64-12 290238902 4.062 ns/op 0 B/op 0 allocs/op
1078
- BenchmarkMathMutexInt-12 155652537 7.998 ns/op 0 B/op 0 allocs/op
1079
- BenchmarkMathFloat32-12 1000000000 0.2918 ns/op 0 B/op 0 allocs/op
1080
- BenchmarkMathFloat64-12 1000000000 0.2913 ns/op 0 B/op 0 allocs/op
1073
+ BenchmarkMathInt8-12 1000000000 0.2930 ns/op 0 B/op 0 allocs/op
1074
+ BenchmarkMathInt32-12 1000000000 0.2867 ns/op 0 B/op 0 allocs/op
1075
+ BenchmarkMathInt64-12 1000000000 0.2866 ns/op 0 B/op 0 allocs/op
1076
+ BenchmarkMathAtomicInt32-12 308022213 3.896 ns/op 0 B/op 0 allocs/op
1077
+ BenchmarkMathAtomicInt64-12 309090546 3.879 ns/op 0 B/op 0 allocs/op
1078
+ BenchmarkMathMutexInt-12 154933560 7.737 ns/op 0 B/op 0 allocs/op
1079
+ BenchmarkMathFloat32-12 1000000000 0.2873 ns/op 0 B/op 0 allocs/op
1080
+ BenchmarkMathFloat64-12 1000000000 0.2868 ns/op 0 B/op 0 allocs/op
1081
1081
PASS
1082
- ok _/Users/simonwaldherr/git/golang-benchmarks/math 7.033s
1082
+ ok _/Users/simonwaldherr/git/golang-benchmarks/math 6.919s
1083
1083
```
1084
1084
1085
1085
### parse
@@ -1125,11 +1125,11 @@ func BenchmarkParseFloat(b *testing.B) {
1125
1125
$ go test -bench . -benchmem
1126
1126
goos: darwin
1127
1127
goarch: arm64
1128
- BenchmarkParseBool-12 1000000000 0.2967 ns/op 0 B/op 0 allocs/op
1129
- BenchmarkParseInt-12 122791490 9.474 ns/op 0 B/op 0 allocs/op
1130
- BenchmarkParseFloat-12 20593035 58.77 ns/op 0 B/op 0 allocs/op
1128
+ BenchmarkParseBool-12 1000000000 0.2895 ns/op 0 B/op 0 allocs/op
1129
+ BenchmarkParseInt-12 126848485 9.460 ns/op 0 B/op 0 allocs/op
1130
+ BenchmarkParseFloat-12 20510175 58.43 ns/op 0 B/op 0 allocs/op
1131
1131
PASS
1132
- ok _/Users/simonwaldherr/git/golang-benchmarks/parse 3.914s
1132
+ ok _/Users/simonwaldherr/git/golang-benchmarks/parse 3.892s
1133
1133
```
1134
1134
1135
1135
### random
@@ -1201,12 +1201,12 @@ func GenerateRandomString(s int) (string, error) {
1201
1201
$ go test -bench . -benchmem
1202
1202
goos: darwin
1203
1203
goarch: arm64
1204
- BenchmarkMathRand-12 257354553 4.502 ns/op 0 B/op 0 allocs/op
1205
- BenchmarkCryptoRand-12 3245437 349.0 ns/op 48 B/op 3 allocs/op
1206
- BenchmarkCryptoRandString-12 12461068 96.32 ns/op 128 B/op 3 allocs/op
1207
- BenchmarkCryptoRandBytes-12 24781057 47.60 ns/op 32 B/op 1 allocs/op
1204
+ BenchmarkMathRand-12 177514748 6.637 ns/op 0 B/op 0 allocs/op
1205
+ BenchmarkCryptoRand-12 3422119 351.6 ns/op 48 B/op 3 allocs/op
1206
+ BenchmarkCryptoRandString-12 10961239 109.5 ns/op 128 B/op 3 allocs/op
1207
+ BenchmarkCryptoRandBytes-12 20809894 57.41 ns/op 32 B/op 1 allocs/op
1208
1208
PASS
1209
- ok _/Users/simonwaldherr/git/golang-benchmarks/random 5.824s
1209
+ ok _/Users/simonwaldherr/git/golang-benchmarks/random 6.132s
1210
1210
```
1211
1211
1212
1212
### regexp
@@ -1260,10 +1260,10 @@ func BenchmarkMatchStringGolibs(b *testing.B) {
1260
1260
$ go test -bench . -benchmem
1261
1261
goos: darwin
1262
1262
goarch: arm64
1263
- BenchmarkMatchString-12 283754 3970 ns/op 10009 B/op 86 allocs/op
1264
- BenchmarkMatchStringCompiled-12 3820686 316.7 ns/op 0 B/op 0 allocs/op
1265
- BenchmarkMatchStringGolibs-12 3689631 319.2 ns/op 0 B/op 0 allocs/op
1263
+ BenchmarkMatchString-12 293354 4092 ns/op 10224 B/op 86 allocs/op
1264
+ BenchmarkMatchStringCompiled-12 3809538 314.3 ns/op 0 B/op 0 allocs/op
1265
+ BenchmarkMatchStringGolibs-12 3791882 316.6 ns/op 0 B/op 0 allocs/op
1266
1266
PASS
1267
- ok _/Users/simonwaldherr/git/golang-benchmarks/regexp 5.219s
1267
+ ok _/Users/simonwaldherr/git/golang-benchmarks/regexp 5.308s
1268
1268
```
1269
1269
0 commit comments