KiKi
I’m working on a small project where I’m trying to learn how to use embedded schemas. So I have albums and tracks. Album can have many tracks and they are saved in jsonb field using embedded schema. I want to be able to add new tracks and also, delete them.
In create_track() function, first I get existing tracks, then there is a map with a new track and then they both get merged, put into changeset and album get updated.
def create_track(%Album{} = album, attrs \\ %{}) do
existing_tracks = album.tracks
new_track =
%TrackEmbed{
# this is just to show how TrackEmbed looks, real data comes from attrs
name: "track name"
}
tracks = [new_track | existing_tracks]
changeset = Ecto.Changeset.change(album)
changeset
|> Ecto.Changeset.put_embed(:tracks, tracks)
|> Repo.update()
end
To delete a track, I get existing tracks, find a list index where track I want to delete is and then I remove it from the list and the album gets updated.
def delete_track(%Album{} = album, attrs \\ %{}) do
existing_tracks = album.tracks
# real data comes from attrs here too
existing_track_index = Enum.find_index(existing_tracks, fn x -> x.name == "track name" end)
tracks = List.delete_at(existing_tracks, existing_track_index)
changeset = Ecto.Changeset.change(album)
changeset
|> Ecto.Changeset.put_embed(:tracks, tracks)
|> Repo.update()
end
The code I have here works but here I’m getting an existing list and just adding or removing from it, so I was wondering if there is maybe a better way?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
Latest on Elixir Forum
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
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 3- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
Nothing dramatically better exists, as far I am aware. You could use
cast_embedbut that doesn’t help you much because you would still need to load the old value of the list and then update it, meaning thatput_embedis the better choice here since it assumes the exact same use case.cast_embedwould be a good choice if you were receiving an entirely new list with which overwrites the old one (and usually if that new list is coming from external request).KiKi
There are several tutorials about embedded schemas out there and no one wrote anything about this so I just wanted to check if I’m doing something wrong. Thanks!
dimitarvp
Well, if you are storing things in PostgreSQL you could reach for its various JSON functions: PostgreSQL: Documentation: 13: 9.16. JSON Functions and Operators
This SO thread might help a bit in orienting you how are they used: https://stackoverflow.com/questions/23490965/postgresql-remove-attribute-from-json-column
This one seems to give you info on how to delete an object inside a JSONB array by index: https://dba.stackexchange.com/questions/164869/delete-an-object-from-within-an-array-using-jsonb-in-postgresql
(Not very useful if you don’t have the index though.)
But I’d strongly caution against poking in the guts of your DB with DB-specific functions unless you can gain a big performance win. Say if you notice that the requests to your app that are supposed to delete tracks have abnormally high latency (which in Elixir/Phoenix land basically means anything above 30ms
) then it’s worth the pursuit. Otherwise I wouldn’t.