Browse Source

Optimize conversation fetching.

tags/v0.9.9
Roger Braun 6 years ago
parent
commit
07b694814e
2 changed files with 9 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/activity_pub/activity_pub.ex
  2. +8
    -0
      priv/repo/migrations/20170912114248_add_context_index.exs

+ 1
- 1
lib/pleroma/web/activity_pub/activity_pub.ex View File

@@ -96,7 +96,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do

def fetch_activities_for_context(context) do
query = from activity in Activity,
where: fragment("? @> ?", activity.data, ^%{ type: "Create", context: context }),
where: fragment("?->>'type' = ? and ?->>'context' = ?", activity.data, "Create", activity.data, ^context),
order_by: [desc: :inserted_at]
Repo.all(query)
end


+ 8
- 0
priv/repo/migrations/20170912114248_add_context_index.exs View File

@@ -0,0 +1,8 @@
defmodule Pleroma.Repo.Migrations.AddContextIndex do
use Ecto.Migration
@disable_ddl_transaction true

def change do
create index(:activities, ["(data->>'type')", "(data->>'context')"], name: :activities_context_index, concurrently: true)
end
end

Loading…
Cancel
Save