-
Notifications
You must be signed in to change notification settings - Fork 17.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sync: support for sharded values #64845
Conversation
This CL deliberately makes the zero value of Sharded unusable. Purpose to force that NewSharded initialization must be used. And because Sharded methods only have read operations. So Sharded can operate without locks or atoms, and multiple goroutines can use a Sharded at the same time. Fixes golang#18802
This PR (HEAD: d748970) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/552515. Important tips:
|
This PR (HEAD: d18fe9a) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/552515. Important tips:
|
Message from qiulaidongfeng: Patch Set 2: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/552515. |
Message from Gopher Robot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/552515. |
Message from tricium-prod@appspot.gserviceaccount.com: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/552515. |
Message from Gopher Robot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/552515. |
Message from Gopher Robot: Patch Set 2: TryBot-Result-1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/552515. |
Message from qiulaidongfeng: Patch Set 2: -Run-TryBot (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/552515. |
This CL deliberately makes the zero value of Sharded unusable.
Purpose to force that NewSharded initialization must be used.
And because Sharded methods only have read operations.
So Sharded can operate without locks or atoms,
and multiple goroutines can use a Sharded at the same time.
goos: windows
goarch: amd64
pkg: sync
cpu: AMD Ryzen 7 7840HS w/ Radeon 780M Graphics
BenchmarkSharedAtomicInt64/1-16 726 1608184 ns/op
BenchmarkSharedAtomicInt64/2-16 1828 646521 ns/op
BenchmarkSharedAtomicInt64/4-16 3958 316261 ns/op
BenchmarkSharedAtomicInt64/8-16 6428 172238 ns/op
BenchmarkSharedAtomicInt64/16-16 16488 73966 ns/op
Fixes #18802