josevalim phoenixframework org glossary
play

@josevalim / phoenixframework.org Glossary Phoenix (web framework) - PowerPoint PPT Presentation

@josevalim / phoenixframework.org Glossary Phoenix (web framework) Elixir (programming language) Erlang VM Switch Switch Browser Switch Server Endpoint http://stackoverflow.com/questions/1636455/where-is-


  1. @josevalim / phoenixframework.org

  2. Glossary Phoenix (web framework) • Elixir (programming language) • Erlang VM •

  3. Switch Switch

  4. Browser Switch Server Endpoint

  5. http://stackoverflow.com/questions/1636455/where-is- erlang-used-and-why

  6. 2 million connections on a single node http://blog.whatsapp.com/index.php/ 2012/01/1-million-is-so-2011/

  7. Intel Xeon CPU X5675 @ 3.07GHz 24 CPU - 96GB Using 40% of CPU and Memory

  8. Phoenix Channels

  9. var socket = new Phoenix . Socket ( "/ws" ); socket . connect (); var channel = socket . channel ( “chat:lobby" ); channel . on ( "user_joined" , function( message ){ // ... }); channel . on ( "new_message" , function( msg ){ // ... }); $input . on ( "enter" , function( e ){ channel . push ( "new_message" , { content : $input . val (), username : App . username }); }); channel . join ();

  10. defmodule Chat . UserSocket do use Phoenix . Socket channel "chat:lobby" , Chat.LobbyChannel channel "room:*" , Chat.RoomChannel # def connect(params, socket) # def id(socket) end

  11. defmodule Chat . LobbyChannel do use Phoenix . Channel def join ( "chat:lobby" , message , socket ) do broadcast! socket , “user_joined” , %{username: message [ “username" ] } { :ok , socket } end def handle_in ( "new_message" , message , socket ) do broadcast socket , "new_message" , %{content: message [ "content" ], username: messages [ “username" ] } socket end end

  12. Outside view Server Browser “Browser" (IE) Server Native Mobile Embedded Device

  13. Outside view Switch Phone Phone Switch Phone Phone

  14. Inside view Channels socket.join(channel) Transport socket.connect() Pubsub • Distributed Erlang • Isolated • Redis • Concurrent • PostgreSQL? • XMPP? Client Server

  15. phoenixframework.org

  16. Performance

  17. Channels Performance

  18. Subscribers per second Clients Time (s)

  19. htop

  20. HTTP(S) Performance

  21. Library Throughput (req/s) Latency (ms) Plug (elixir) 198 328 0.63 Phoenix (elixir) 179 685 0.61 Gin (go) 176 156 0.65 Play (scala) 171 236 1.89 Express Cluster (node) 92 064 1.24 Martini (go) 32 077 3.35 Sinatra (ruby) 30 561 3.50 Rails (ruby) 11 903 8.50 $ wrk -t20 -c100 -d30S --timeout 2000 https://github.com/mroth/phoenix-showdown

  22. Inside view /users /users • Isolated / • Concurrent /admin /search?q=elixir Client Server

  23. Isolated and Concurrent Crashes are isolated • Data is isolated 
 • (GC is per process, no global pauses) Load balances on IO and CPU 
 • (efficient on multicore)

  24. Productivity

  25. Productivity Short-term productivity • Documentation / Guides • Workflows / Generators • Long-term productivity • Introspection • Maintainability •

  26. Generators as learning tools $ mix phoenix.gen.html $ mix phoenix.gen.json $ mix phoenix.gen.channel

  27. More… Form builders • Static build tools with ES6 as default • Live reloading • Pretty error pages • First-class concurrent test tools • Packages via hex.pm •

  28. Long term productivity: Functional Programming

  29. Long term productivity: Applications

  30. Application Super visor Pubsub TCP Client

  31. Applications Package and run our code • Can be started and stopped as a unit • Provide unified configuration • Hold processes and state in the • supervision tree

  32. Observer Demo

  33. Applications Introspection & Monitoring • Visibility of the application state • Easy to break into "components" • Reasoning when things go wrong •

  34. Summing up

  35. phoenixframework.org

  36. elixir-lang.org

  37. consulting and software engineering

  38. Elixir coaching Elixir design review consulting and software engineering Custom development

  39. @josevalim / phoenixframework.org

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend