Join on preloads to avoid N+1 queries
authorhref <href@random.sh>
Sat, 26 Jan 2019 14:55:53 +0000 (15:55 +0100)
committerhref <href@random.sh>
Sat, 26 Jan 2019 14:55:53 +0000 (15:55 +0100)
lib/pleroma/notification.ex
lib/pleroma/plugs/oauth_plug.ex

index e47145601e8cbd3d57af9eccc1d0c6dad409914e..2364d36da0a4a03f43018b17b9e9d114bd821389 100644 (file)
@@ -35,7 +35,8 @@ defmodule Pleroma.Notification do
         n in Notification,
         where: n.user_id == ^user.id,
         order_by: [desc: n.id],
-        preload: [:activity],
+        join: activity in assoc(n, :activity),
+        preload: [activity: activity],
         limit: 20
       )
 
@@ -66,7 +67,8 @@ defmodule Pleroma.Notification do
       from(
         n in Notification,
         where: n.id == ^id,
-        preload: [:activity]
+        join: activity in assoc(n, :activity),
+        preload: [activity: activity]
       )
 
     notification = Repo.one(query)
index 437aa95b333c1fb93a5c0d598ece78be800597a8..945a1d49f7d05fe149e9afcb8372a14dee69199f 100644 (file)
@@ -33,7 +33,12 @@ defmodule Pleroma.Plugs.OAuthPlug do
   #
   @spec fetch_user_and_token(String.t()) :: {:ok, User.t(), Token.t()} | nil
   defp fetch_user_and_token(token) do
-    query = from(q in Token, where: q.token == ^token, preload: [:user])
+    query =
+      from(t in Token,
+        where: t.token == ^token,
+        join: user in assoc(t, :user),
+        preload: [user: user]
+      )
 
     with %Token{user: %{info: %{deactivated: false} = _} = user} = token_record <- Repo.one(query) do
       {:ok, user, token_record}