[go-nuts] distributed runtime

2020-01-03 Thread Justin Israel
Seems like it would just be easier to explicitly schedule work over something like nats.io At least you would have 100% control over what is distributed over the network. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this

Re: [go-nuts] distributed runtime

2020-01-03 Thread Michael Jones
Go is a shared memory system. Your challenge would be to understand a pointer that came to you from a different machine (i.e., remotely, the R in RPC). On Fri, Jan 3, 2020 at 2:31 PM wrote: > Hi all and Happy New Year, > > I was daydreaming the other day and I was wondering if it was possible to

[go-nuts] distributed runtime

2020-01-03 Thread dolanor
Hi all and Happy New Year, I was daydreaming the other day and I was wondering if it was possible to create some alternate runtime package. The point would be to have the scheduler schedule goroutine not only on different CPU, but also on different CPU on different machines. The system would be