voger
I am writing a twitter clone project to see how it is done. I want to be able to create mentions to users from the post. I have these schemas
defmodule TweetClone.Accounts.User do
use Ecto.Schema
defmodule TweetClone.Accounts.User do
use Ecto.Schema
schema "users" do
field :nickname, :string
# ... other things
many_to_many :mentioned_statuses, Status, join_through: TweetClone.Statuses.Mentions
end
end
defmodule TweetClone.Statuses.Mention do
use Ecto.Schema
import Ecto.Changeset
schema "mentions" do
belongs_to :user, TweetClone.Accounts.User
belongs_to :status, TweetClone.Statuses.Status
timestamps()
end
def changeset(%__MODULE__{} = mention, %{user: user, status: status}) do
mention
|> change()
|> put_assoc(:user, user)
|> put_assoc(:status, status)
end
end
defmodule TweetClone.Statuses.Status do
use Ecto.Schema
schema "statuses" do
# ... various fields
many_to_many :mentioned_users, User, join_through: TweetClone.Statuses.Mention
end
def changeset(status, attrs) do
status
# ... various pipes
|> mention_users()
end
defp mention_users(changeset) do
text = get_change(changeset, :text, "")
mentioned_nicknames =
Regex.scan(~r/@[\w.@_-]+/u, text)
|> Enum.map(fn nickname ->
nickname
|> hd()
|> String.trim_leading("@")
end)
mentioned_users = Repo.all(from u in User, where: u.nickname in ^mentioned_nicknames)
put_assoc(changeset, :mentioned_users, mentioned_users)
end
end
This works but when I do in iex
iex(49)> attrs = %{sender: user1, text: "Hello, @john2 @john3"}
iex(50)> Statuses.create_status(attrs)
[debug] QUERY OK source="users" db=2.8ms queue=0.2ms idle=1988.4ms
SELECT u0."id", u0."nickname", u0."email", u0."password_hash", u0."confirmed_at", u0."reset_sent_at", u0."inserted_at", u0."updated_at" FROM "users" AS u0 WHERE (u0."nickname" = ANY($1)) [["john2", "john3"]]
[debug] QUERY OK db=4.2ms queue=0.3ms idle=1991.8ms
begin []
[debug] QUERY OK db=6.4ms
INSERT INTO "statuses" ("sender_id","text","inserted_at","updated_at") VALUES ($1,$2,$3,$4) RETURNING "id" [1, "Hello, @john2 @john3", ~N[2020-05-31 17:41:42], ~N[2020-05-31 17:41:42]]
[debug] QUERY OK db=9.5ms
INSERT INTO "mentions" ("status_id","user_id","inserted_at","updated_at") VALUES ($1,$2,$3,$4) RETURNING "id" [71, 2, ~N[2020-05-31 17:41:42], ~N[2020-05-31 17:41:42]]
[debug] QUERY OK db=2.7ms
INSERT INTO "mentions" ("status_id","user_id","inserted_at","updated_at") VALUES ($1,$2,$3,$4) RETURNING "id" [71, 3, ~N[2020-05-31 17:41:42], ~N[2020-05-31 17:41:42]]
[debug] QUERY OK db=3.2ms
commit []
{:ok,
%TweetClone.Statuses.Status{
...
It performs one insert for the Status and two other inserts for the Mention rows. Is there any way to minimize those insert operations?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
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
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
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
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
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
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
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 4- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
thojanssens1
Let’s put Elixir/Ecto aside for a moment and talk SQL only. We see now 3 “INSERT INTO” queries to perform that operation.
How would you minimize these queries with SQL?
voger
Hello I guess I would go something like this
So, for one status and three mentions (total four records) we have two insert statements.
I could build those
Mentionschemas and persist them manually withRepo.insert_all(), after I persist theStatusschema and get the{:ok, status}tuple. In that case that logic will have to go in the context module. A previous iteration did just that. But I really like the simplicity of assigning the relatedUserschemas and let Ecto take care the rest.thojanssens1
I dont think
insert_allbuilds a single INSERT INTO for multiple rows. Could you test it and share results if possible?voger
It does use a single insert