Subscribe for only $15 to access all of our content
Here we'll see how structs can be used to format data. We'll start with an introduction to structs and then explore different ways to map external data to a struct, including using the ExConstructor package.
In this episode we’ll use proactive caching with Cachex. Proactive caching can help ensure there is never a cache miss since data is loaded when the application starts.
Watch episode
Here we look at how to use Cachex to create a cache in an Elixir application. We’ll start by seeing how to interact with Cachex and then we’ll implement a simple cache in our application.
Watch episode
Phoenix contexts are modules that group associated functionality. To see how they work, we’ll build a simple blog with comments. This is a great episode for anyone new to Phoenix or wanting to see how contexts work.
Watch episode
In this episode we’ll explore another way to validate API params. We’ll update our existing example to use the Params package, which reduces much of the boilerplate of defining Ecto schemas and changesets.
Watch episode
In this episode we’ll see how we can validate API parameters . We’ll take a simple search API and use schemaless Ecto changesets to validate the request parameters.
Watch episode
In this episode we’ll look at how we can upgrade a Phoenix application to use the new Phoenix 1.4 release.
Watch episode
In this episode we’re getting started with Erlang Term Storage or ETS. We’ll learn the basics of storing data with ETS, then we’ll expand on that to see how ETS can be used in a Phoenix application.
Watch episode
HTTP Basic Authentication is a simple way to add authenticate users in an application. In this episode we’ll see how to add basic auth to an Elixir application.
Watch episode
In this episode we’ll get an introduction to Elixir Streams. We’ll see why they’re called “lazy enumerables” and how they can be composed to perform more complex transformations.
Watch episode
In this episode we’ll checkout Thesis, which is a lightweight CMS for Elixir. We’ll see how we can use Thesis to easily edit content, add images, and add new pages of content.
Watch episode
In this episode we’ll see how we can easily use Phoenix Channels to broadcast events from the server in order to update the client in realtime.
Watch episode