-
-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid allocations with
(*regexp.Regexp).MatchString
(#1302)
We should use `(*regexp.Regexp).MatchString` instead of `(*regexp.Regexp).Match([]byte(...))` when matching string to avoid unnecessary `[]byte` conversions and reduce allocations. Example benchmark: var goTestRegExp = regexp.MustCompile(`_test\.go$`) func BenchmarkMatch(b *testing.B) { for i := 0; i < b.N; i++ { if match := goTestRegExp.Match([]byte("file_test.go")); !match { b.Fail() } } } func BenchmarkMatchString(b *testing.B) { for i := 0; i < b.N; i++ { if match := goTestRegExp.MatchString("file_test.go"); !match { b.Fail() } } } goos: linux goarch: amd64 pkg: github.com/onsi/ginkgo/v2/ginkgo/watch cpu: AMD Ryzen 7 PRO 4750U with Radeon Graphics BenchmarkMatch-16 5665784 314.4 ns/op 16 B/op 1 allocs/op BenchmarkMatchString-16 8481872 140.5 ns/op 0 B/op 0 allocs/op PASS ok github.com/onsi/ginkgo/v2/ginkgo/watch 4.321s Signed-off-by: Eng Zer Jun <[email protected]>
- Loading branch information
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters