|
|
|
|
|
by aikah
4091 days ago
|
|
> If you ran Go as a single thread, you would also run into similar issues. Err no you wouldn't,you don't have to deal with interprocess communication when you deal with Go routines, you share memory between goroutines ie , true concurrency where as in node you'd fork some stuff, serialize data between processes and message with redis to make sure everything is notified something happen. Node isn't concurrent. Go is. That's why you read all these blog posts about "how I moved from Nodejs to Go(or rust)" and that's why you'll read more of them. |
|