[go-nuts] Re: Data Sharing with Non go application

2021-04-03 Thread R Srinivasan
Great suggestions. Thanks. I will investigate the options. srini On Saturday, April 3, 2021 at 11:20:35 AM UTC-4 Brian Candler wrote: > Have a look at nanomsg. This should abstract away some of the underlying > complexity and let you switch between TCP, IPC and other transports. > > Also look

[go-nuts] Re: Data Sharing with Non go application

2021-04-03 Thread Brian Candler
Have a look at nanomsg. This should abstract away some of the underlying complexity and let you switch between TCP, IPC and other transports. Also look at serialization formats where the data can be consumed without unpacking it: flatbuffers / flexbuffers, capnproto (These suggestions are on