Play Framework (11) — Basic Concept

haimei
play-hard-work-hard
1 min readApr 21, 2016

Play Framework is event-driven server. NodeJS is threaded server.

Screenshot 2016-04-21 12.03.51

Non-blocking IO

  • build on top of Netty
    Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers and clients.
  • no sensitivity to downstream slowness
  • easy to parallelize IO and make parallel request easy
  • supports many concurrent and long running connections, enabling websockets, coment, server-sent-events.

--

--