Programmer Passport: OTP
by: Bruce Tate
Published | 2022-06-15 |
---|---|
Internal code | passotp |
Print status | In Print |
Pages | 74 |
User level | Intermediate |
Keywords | Elixir, OTP, libraries, layers, API, concurrency, designing, programming, data structures, functional programming, testing, web application development |
Related titles | Designing Elixir Systems with OTP by James E Gray II and Bruce A Tate |
ISBN | 9781680509687 |
Other ISBN |
Channel epub: 9781680509717 Channel PDF: 9781680509724 Kindle: 9781680509694 Safari: 9781680509700 Kindle: 9781680509694 |
BISACs | COM051010 COMPUTERS / Programming Languages / GeneralCOM051240 COMPUTERS / Software Development & Engineering / Systems Analysis & DesignCOM051240 COMPUTERS / Software Development & Engineering / Systems Analysis & Design |
Highlight
OTP is the heart of the rapidly growing Elixir, the functional language at the heart of Phoenix and LiveView. OTP enables exciting concurrent applications with among the best reliability properties in the world. With this book, you’ll learn to code systems that can detect failure and recover from it automatically using the same techniques behind the world’s telecommunication systems. By plugging into OTP, your own libraries will handle concurrent requests robustly, and seamlessly integrate with other supervised Elixir and Erlang applications. If you’re looking to take your next step as an Elixir developer, look no further than OTP.
Description
OTP is a library for building fault tolerant systems with self-healing properties; its services power many of the world’s reliable telecom infrastructure. It also powers many of Elixir’s most powerful capabilities. In this fast-paced book—first published with Groxio’s Programmer Passport—you’ll learn about the most important abstractions that power OTP. This approachable guide will give you a high-level understanding before diving into individual details. This understanding will tell you how the core APIs work so you’ll know why Elixir programmers write code the way they do.
To start, this guide will walk you through building your own basic service that works in the same way as OTP’s foundational GenServer. This quick exercise will gently ease you into the way GenServers work. You’ll build your own GenServer, and then quickly move on to adding the supervision services to enable the reliability and self-healing properties that make Elixir famous. Once you’ve done so, you’ll add features like a dynamic supervisor, and use a process registry to make your program more flexible and dynamic.
Find out what Groxio customers already know. The assistance of an experienced guide will help you learn how to use OTP to build reliable, highly concurrent systems more quickly than you could without one.
Contents and Extracts
- A Basic Handmade Server
- Build a Server with a Process
- Build the Boundary Layer
- Build an OTP Server, With Mix
- Your Turn
- Communication Between Servers excerpt
- Anatomy of a GenServer
- handle_info Processes Nonstandard Messages
- Schedule an Alarm with handle_cast
- Implement a Status Message with handle_call
- Your Turn
- The Lifecycle and Supervision excerpt
- The Primitive Mechanisms
- OTP Supervisors Manage GenServer Lifecycles
- Add Some Children
- Lifecycle Policy
- Your Turn
- Next Time
- The Power of a Name
- Add Dynamic Characters to SuperDuper
- Dynamic Children
- Dynamic Supervisors
- The Process Registry: The Power of a Name
- Your Turn
- Next Time