More efficient queries.

This commit is contained in:
lain 2018-05-24 12:44:26 +02:00
parent 0b5bc62b33
commit 1cd6194dee
2 changed files with 5 additions and 3 deletions

View File

@ -242,8 +242,9 @@ defmodule Pleroma.Web.ActivityPub.Utils do
fragment(
"? @> ?",
activity.data,
^%{type: "Follow", actor: follower_id, object: followed_id}
^%{type: "Follow", object: followed_id}
),
where: activity.actor == ^follower_id,
order_by: [desc: :id],
limit: 1
)
@ -260,7 +261,7 @@ defmodule Pleroma.Web.ActivityPub.Utils do
query =
from(
activity in Activity,
where: fragment("(?)->>'actor' = ?", activity.data, ^actor),
where: activity.actor == ^actor,
# this is to use the index
where:
fragment(

View File

@ -95,7 +95,8 @@ defmodule Pleroma.Factory do
}
%Pleroma.Activity{
data: data
data: data,
actor: follower.ap_id
}
end