Re: [grpc-io] Conversion from std::vector to repeated field

2023-08-08 Thread Deepak Jain
Thanks Brad. I will check this out and get back to you. Thanks On Tue, 8 Aug 2023, 22:45 Brad Town, wrote: > If you are doing something like this: > > *foo.mutable_bar() = {strings.begin(), strings.end()}; > > You would probably see an improvement if you change it to this: > > foo.muta

[grpc-io] Re: August 22 gRPC Meetup update

2023-08-08 Thread Rajiv Singh
Hello everyone, you can reach me through the following connections: Portfolio: https://iamrajiv.github.io GitHub: https://github.com/iamrajiv LinkedIn: https://www.linkedin.com/in/iamrajivranjansingh Twitter: https://twitter.com/therajiv On Wednesday, August 2, 2023 at 5:04:25 AM UTC+5:30 Lar

Re: [grpc-io] Missing node-v108-linux-x64-glibc precompiled binary

2023-08-08 Thread 'Michael Lumish' via grpc.io
The grpc package has been deprecated since April 2021, and the suggested replacement is @grpc/grpc-js. As noted in the README , the grpc package only supports Node version up to 14, while you are trying to install it on Node 18. We have never published precompile

[grpc-io] Missing node-v108-linux-x64-glibc precompiled binary

2023-08-08 Thread Cory Deppen
Would someone be able to confirm whether the node-v108-linux-x64-glibc binary was recently removed from the node-precompiled-binaries.grpc.io site? We're currently seeing the following error that occurs during the grpc postinstall process while installing packages via GH Action. This was workin

Re: [grpc-io] Conversion from std::vector to repeated field

2023-08-08 Thread 'Brad Town' via grpc.io
If you are doing something like this: *foo.mutable_bar() = {strings.begin(), strings.end()}; You would probably see an improvement if you change it to this: foo.mutable_bar()->Assign(strings.begin(), strings.end()); Brad On Mon, Aug 7, 2023 at 10:47 PM Deepak Jain wrote: > Hello guys