소스 검색

Only search through last 100_000 activities for fetches.

This is purely a performance enhancement
tags/v0.9.9
Roger Braun 6 년 전
부모
커밋
3037814fde
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. +9
    -0
      lib/pleroma/web/activity_pub/activity_pub.ex

+ 9
- 0
lib/pleroma/web/activity_pub/activity_pub.ex 파일 보기

@@ -155,6 +155,14 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
end
defp restrict_favorited_by(query, _), do: query

# Only search through last 100_000 activities by default
defp restrict_recent(query, _) do
since = Repo.aggregate(Activity, :max, :id) - 100_000

from activity in query,
where: activity.id > ^since
end

def fetch_activities(recipients, opts \\ %{}) do
base_query = from activity in Activity,
limit: 20,
@@ -169,6 +177,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
|> restrict_actor(opts)
|> restrict_type(opts)
|> restrict_favorited_by(opts)
|> restrict_recent(opts)
|> Repo.all
|> Enum.reverse
end


불러오는 중...
취소
저장