]> cat aescling's git repositories - mastodon.git/commitdiff
Make faster ProcessFeedService (#3080)
authorShunsuke Michii <harukasan@me.com>
Tue, 16 May 2017 10:12:29 +0000 (19:12 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 16 May 2017 10:12:29 +0000 (12:12 +0200)
* Add index accounts on uri.

* Remove a blank line.

app/services/process_feed_service.rb
db/migrate/20170516072309_add_index_accounts_on_uri.rb [new file with mode: 0644]
db/schema.rb

index afd44aafe424e701e0f3937c6e3148e8ea093ad7..c573c0490cd1a8517fed4cfbd6457c2e579d5ffb 100644 (file)
@@ -209,7 +209,7 @@ class ProcessFeedService < BaseService
       if TagManager.instance.web_domain?(url.host)
         Account.find_local(url.path.gsub('/users/', ''))
       else
-        Account.find_by(uri: href) || Account.find_by(url: href) || FetchRemoteAccountService.new.call(href)
+        Account.where(uri: href).or(Account.where(url: href)).first || FetchRemoteAccountService.new.call(href)
       end
     end
 
diff --git a/db/migrate/20170516072309_add_index_accounts_on_uri.rb b/db/migrate/20170516072309_add_index_accounts_on_uri.rb
new file mode 100644 (file)
index 0000000..d98e9fa
--- /dev/null
@@ -0,0 +1,5 @@
+class AddIndexAccountsOnUri < ActiveRecord::Migration[5.0]
+  def change
+    add_index :accounts, :uri
+  end
+end
index 76624f07a3a980eb282882c5ed4c50e3cf471afd..00016e7c1793e5ca8ab853310c31ba58637ee038 100644 (file)
@@ -10,7 +10,7 @@
 #
 # It's strongly recommended that you check this file into your version control system.
 
-ActiveRecord::Schema.define(version: 20170508230434) do
+ActiveRecord::Schema.define(version: 20170516072309) do
 
   # These are extensions that must be enabled in order to support this database
   enable_extension "plpgsql"
@@ -50,6 +50,7 @@ ActiveRecord::Schema.define(version: 20170508230434) do
     t.datetime "last_webfingered_at"
     t.index "(((setweight(to_tsvector('simple'::regconfig, (display_name)::text), 'A'::\"char\") || setweight(to_tsvector('simple'::regconfig, (username)::text), 'B'::\"char\")) || setweight(to_tsvector('simple'::regconfig, (COALESCE(domain, ''::character varying))::text), 'C'::\"char\")))", name: "search_index", using: :gin
     t.index "lower((username)::text), lower((domain)::text)", name: "index_accounts_on_username_and_domain_lower", using: :btree
+    t.index ["uri"], name: "index_accounts_on_uri", using: :btree
     t.index ["url"], name: "index_accounts_on_url", using: :btree
     t.index ["username", "domain"], name: "index_accounts_on_username_and_domain", unique: true, using: :btree
   end