Adding Persistence as a Boundary Service
Look at some entanglements we may encounter when implementing the data layer and how we'll correct them in Mastery.
We'll cover the following...
Challenges in implementing the data layer
In most Elixir projects, we inevitably begin our data layer with schemas and go from there. We tack on queries and services that use them to do the following:
-
Count
-
Save
-
Summarize things
The persistence framework Ecto
makes that much easy. What emerges might be a unified API, but it will be one that ...