activitypub utils: optimize block and follow activity lookup
multi-field @> comparison is very expensive, so only use @> for the field where it matters this makes the query take only a few usec to execute verses many msec on a busy instance
This commit is contained in:
parent
f3a71f2986
commit
47dc52a758
@ -240,11 +240,16 @@ defmodule Pleroma.Web.ActivityPub.Utils do
|
|||||||
activity in Activity,
|
activity in Activity,
|
||||||
where:
|
where:
|
||||||
fragment(
|
fragment(
|
||||||
"? @> ?",
|
"? ->> 'type' = 'Follow'",
|
||||||
activity.data,
|
activity.data
|
||||||
^%{type: "Follow", object: followed_id}
|
|
||||||
),
|
),
|
||||||
where: activity.actor == ^follower_id,
|
where: activity.actor == ^follower_id,
|
||||||
|
where:
|
||||||
|
fragment(
|
||||||
|
"? @> ?",
|
||||||
|
activity.data,
|
||||||
|
^%{object: followed_id}
|
||||||
|
),
|
||||||
order_by: [desc: :id],
|
order_by: [desc: :id],
|
||||||
limit: 1
|
limit: 1
|
||||||
)
|
)
|
||||||
@ -365,11 +370,16 @@ defmodule Pleroma.Web.ActivityPub.Utils do
|
|||||||
activity in Activity,
|
activity in Activity,
|
||||||
where:
|
where:
|
||||||
fragment(
|
fragment(
|
||||||
"? @> ?",
|
"? ->> 'type' = 'Block'",
|
||||||
activity.data,
|
activity.data
|
||||||
^%{type: "Block", object: blocked_id}
|
|
||||||
),
|
),
|
||||||
where: activity.actor == ^blocker_id,
|
where: activity.actor == ^blocker_id,
|
||||||
|
where:
|
||||||
|
fragment(
|
||||||
|
"? @> ?",
|
||||||
|
activity.data,
|
||||||
|
^%{object: blocked_id}
|
||||||
|
),
|
||||||
order_by: [desc: :id],
|
order_by: [desc: :id],
|
||||||
limit: 1
|
limit: 1
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user