zporter
40) ElixirConf US 2018 – Breaking Down the User Monolith – Zach Porter
ElixirConf US 2018 – Breaking Down the User Monolith – Zach Porter
Coming from Ruby on Rails, the convention is to have a
Usermodel handle multiple aspects of an account such as login, logout, password reset, and email confirmation. While there is a temptation to bring that convention with us when building an Elixir application, we can do better by leveraging bounded contexts, Ecto’s embedded schemas, andEcto.Multito break these separate pieces of functionality into isolated chunks that are easier to maintain and extend.
Audience: Beginner, Intermediate
All talks are available in the ElixirConf US 2018 Talks List or via the elixirconf2018 tag
Trending in Talks
Mise en Place for Ecto: Organizing Domain Complexity w/Business Rules-Nicholas Henry|ElixirConf 2025
Comments welcome! Vi...
New
Leaving a BEAM cluster (basically) unattended for 2 years - Yuri Oliveira | ElixirConf US 2025
Comments welcome! View the...
New
From Notebook to Production: Evolution of Elixir Projects - Emmanuel Pinault | ElixirConf US 2025
Comments welcome! View...
New
You can build an AI agent - Dennis Beatty | ElixirConf US 2025
Comments welcome! View the <span class="hashtag-icon-place...
New
Test-Driven Elixir: Fast Track to Senior Engineer – Britton Broderick | ElixirConf US 2025
Comments welcome! View the <sp...
New
Engineering Network Protocol Clients - Carlos Souza | ElixirConf US 2025
Comments welcome! View the <span class="hashtag-...
New
Elixir’s Configuration Layers: A Visual Journey - Stephanie Lane | ElixirConf US 2025
Comments welcome! View the <span cl...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance











First 3 of 3 Posts
Yamilquery
Hi guys! First of all, thank you so much for this ElixirConf 2018, was really awesome!
I was watching the ElixirConf 2018, specifically a video “ElixirConf 2018 – Breaking Down the User Monolith – Zach Porter”, in which he explains how to breaking down the User monolith. But I had a couple of doubts with it, and it seems to they disable the comments section in Youtube.
So, for that reason I’ll ask, if somebody have a github repo of this talk.
I was trying to replicate the exposed approach, but I got some errors.
The trouble that I have is with the embedded_schema. Because I was watching the video and it’s seems to be incomplete, he don’t explain how to declare the structure for the user schema, using something like embedded_one and also he don’t show how can we create the migrations for that embedded field.
I found a tutorial to do that thing, but I’m not pretty sure if it’s the best practices.
https://robots.thoughtbot.com/embedding-elixir-structs-in-ecto-models
Thank you so much!
zporter
Hey! Thanks for your interest in my talk!
Quick answers to your questions:
Not yet, but I am planning on finishing one that I started to accompany this talk. I can post here when it’s ready.
The example I gave using
embedded_schemas was around Registrations. I apologize if it wasn’t clear, but I’m not actually persisting that embedded schema to the database. I’m using it to provide structure to a form or a set of user inputs and to manage changes and validations for those inputs. I’m then relying on the existingUserschema as well as theCredentialschema to persist to the relevant tables in the database. I hope that helps to clear the example up some! Theembeds_oneandembeds_manyfunctions are very useful for storing in a JSON column in the database, and I’ve certainly done that before, but not in this case.If you have any further questions, please let me know.
Thanks!
ErionS
Hey!
Great presentation, just watched it.
Could I get the github repo with the code presented please as I too have been looking for the presentation code.
Thanks!