Skip to content

Instantly share code, notes, and snippets.

@dschenkelman
Created October 20, 2015 03:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dschenkelman/06114c437ddf38dc868f to your computer and use it in GitHub Desktop.
Save dschenkelman/06114c437ddf38dc868f to your computer and use it in GitHub Desktop.
Fake talk

Rise of microservices

In an era were parallelism is important, it is key to take advantage of multiple processors to leverage our maximum computing power. However, most languages and VMs rely on thread pools and schedulers to manage work and assign work to machine cores, which might lead to either an excessive need for tuning or wasted resources.

In this talk I will explain why JavaScript and in particular it’s server side implementation: node.js can help take advantage of all your resources by providing a scalable infrastructure based on microservices, taking advantage of single thread processes that rely on an event loop. The demos will make use of containerization techiques using Docker to explain how these services can be easily deployed and can communicate in a cloud enviroment.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment