(14) Should I use Go or Node.js for a mobile app backend? - Quora
- Go concurrency model can elegantly make use of all cpu cores. node.js on other hand is a single process reactor model and will need to spawn multiple processes to make use of multi-cores. This means communication between code running in 2 process needs system IPC or other means.
- In reactor models like node.js the flow will appear as a series of callbacks where as in Go the logic can be represented as is.
- Go is static typed.
- Go builds to a single binary which can be easily deployed.
Read full article from (14) Should I use Go or Node.js for a mobile app backend? - Quora
No comments:
Post a Comment