genkio / blog

Stay hungry stay foolish
https://slashbit.github.io/blog/
0 stars 1 forks source link

A first look: Elixir & Phoenix #123

Open genkio opened 7 years ago

genkio commented 7 years ago

study notes taken from the Upcase's Intro to Elixir, Elixir & Phoenix in Production course

  • Intro to Elixir
  • a functional programming language runs on Erlang virtual machine.
  • ruby-like syntax, compiles down to Erlang virtual machine byte code.
  • language features: pattern matching, stream data through bunch of functions via pipes, takes the advantage of all cores of CPU, live web sockets via channels, fault tolerance with supervisor watching and restarting crashing processes.
  • getting started with elixir lang website documentation, and the book programming elixir.