-
Notifications
You must be signed in to change notification settings - Fork 902
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
GODRIVER-3455 Make BSON benchmarks more representative of real use cases. #1974
base: master
Are you sure you want to change the base?
GODRIVER-3455 Make BSON benchmarks more representative of real use cases. #1974
Conversation
API Change ReportNo changes found! |
bson/benchmark_test.go
Outdated
@@ -194,6 +196,23 @@ func BenchmarkMarshal(b *testing.B) { | |||
desc: "nested struct", | |||
value: nestedInstance, | |||
}, | |||
{ | |||
desc: "simple D", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This case doesn't seem like it will be any different than encodetestInstance
. But if we keep it, suggest defining it globally and adding it to BenchmarkUnmarshal
as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The marshaled BSON document is the same, but the input type is bson.D
instead of a user-defined struct, so the marshal logic is significantly different (e.g. iterating over slice elements vs struct fields).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My comment was unclear, I'm suggesting we do something like this:
var encodetestBsonD bson.D
func init() {
b, err := bson.Marshal(encodetestInstance)
if err != nil {
log.Fatalf("error marshling struct: %v", err)
}
err = bson.Unmarshal(b, &encodetestBsonD)
if err != nil {
log.Fatalf("error unmarshaling BSON: %v", err)
}
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with consideration for this comment: https://github.com/mongodb/mongo-go-driver/pull/1974/files#r2000139379
GODRIVER-3455
Summary
BenchmarkMarshal
andBenchmarkUnmarshal
BSON benchmarks parallel.BenchmarkMarshal
andBenchmarkUnmarshal
.Background & Motivation