-
Notifications
You must be signed in to change notification settings - Fork 812
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
Deserializing dynamic types? #255
Comments
Yes this almost exactly what the Any type does.
Then you would simply be able to call the function. |
The only thing special about |
Ok, I finally had some luck using Any type. Our benchmarks dropped from 1.85 mil msg/sec to 1.1 mil msg/sec (nonsense benchmarks but still) That being said, I also tried the proto.RegisterMessage(func () proto.Message {
return &generatedType{}
}) Approach mentioned by @awalterschulze Right now I manually registered this for my types. |
This is very interesting. Could you also mention this to golang protobuf?
…On Tue, 24 Jan 2017, 22:52 Roger Johansson, ***@***.***> wrote:
Ok, I finally had some luck using Any type.
It is however far slower than what we have now. I would assume its the
size of the DynamicAny or something that cost allocation time.
Our benchmarks dropped from 1.85 mil msg/sec to 1.1 mil msg/sec (nonsense
benchmarks but still)
That being said, I also tried the
proto.RegisterMessage(func () proto.Message {
return &generatedType{}
})
Approach mentioned by @awalterschulze <https://github.com/awalterschulze>
This had a fairly decent impact in a good way.
Up from 1.85 mil msg/sec to 2.0 mil msg/sec
So 150k diff.
Right now I manually registered this for my types.
It would have been neat if that could be generated though
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#255 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABvsLbk2w-6qqHKKgByUTCqUJxIjaJHnks5rVnKtgaJpZM4LrodY>
.
|
Thank you
…On Wed, 25 Jan 2017, 07:27 Walter Schulze, ***@***.***> wrote:
This is very interesting. Could you also mention this to golang protobuf?
On Tue, 24 Jan 2017, 22:52 Roger Johansson, ***@***.***>
wrote:
Ok, I finally had some luck using Any type.
It is however far slower than what we have now. I would assume its the
size of the DynamicAny or something that cost allocation time.
Our benchmarks dropped from 1.85 mil msg/sec to 1.1 mil msg/sec (nonsense
benchmarks but still)
That being said, I also tried the
proto.RegisterMessage(func () proto.Message {
return &generatedType{}
})
Approach mentioned by @awalterschulze <https://github.com/awalterschulze>
This had a fairly decent impact in a good way.
Up from 1.85 mil msg/sec to 2.0 mil msg/sec
So 150k diff.
Right now I manually registered this for my types.
It would have been neat if that could be generated though
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#255 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ABvsLbk2w-6qqHKKgByUTCqUJxIjaJHnks5rVnKtgaJpZM4LrodY>
.
|
In Proto.Actor, we have this bit of code for deserializing any proto message from our envelope type like so:
This works, but it feels somewhat hacky to have to resort to reflection here.
In C# using Protobuf, we only need to do:
I can however not see any such infrastructure in Go.
Is there a better way of solving the above or is that as good as it gets?
I do know about protobuf "Any" types, but AFAIK, not all languages have support for that yet.
The text was updated successfully, but these errors were encountered: