diff options
author | lain <lain@soykaf.club> | 2019-05-11 11:26:46 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-05-11 11:26:46 +0200 |
commit | 01c45ddc9ead715131b3c583caa14fcf20845354 (patch) | |
tree | 5eaa8f081fec9a79f65688524284735a9aac1573 /lib | |
parent | 17d01869ea82e1b0ad4b78479cabe0637d04d1cf (diff) | |
download | pleroma-01c45ddc9ead715131b3c583caa14fcf20845354.tar.gz |
Search: Use RUM index.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/mastodon_api/mastodon_api_controller.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex index 956736780..32677df95 100644 --- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex +++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex @@ -1019,12 +1019,12 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do where: "https://www.w3.org/ns/activitystreams#Public" in a.recipients, where: fragment( - "to_tsvector('english', ?->>'content') @@ plainto_tsquery('english', ?)", - o.data, + "? @@ plainto_tsquery('english', ?)", + o.fts_content, ^query ), limit: 20, - order_by: [desc: :id] + order_by: [fragment("? <=> now()::date", o.inserted_at)] ) Repo.all(q) ++ fetched |