]> cat aescling's git repositories - mastodon.git/commitdiff
By pushing this into a worker we can reduce the amount of time the feed manager using...
authorKurtis Rainbolt-Greene <kurtis@rainbolt-greene.online>
Wed, 5 Apr 2017 03:16:53 +0000 (20:16 -0700)
committerKurtis Rainbolt-Greene <kurtis@rainbolt-greene.online>
Wed, 5 Apr 2017 03:23:40 +0000 (20:23 -0700)
app/lib/feed_manager.rb
app/workers/push_update_worker.rb [new file with mode: 0644]

index 2cca1cefe4f7a6a71fbb89e36edc2a748e8ff891..075f86c2de64098ec28f094ef9f69d5de92fdc28 100644 (file)
@@ -34,7 +34,7 @@ class FeedManager
       trim(timeline_type, account.id)
     end
 
-    broadcast(account.id, event: 'update', payload: inline_render(account, 'api/v1/statuses/show', status))
+    PushUpdateWorker.perform_async(timeline_type, account.id, status.id)
   end
 
   def broadcast(timeline_id, options = {})
diff --git a/app/workers/push_update_worker.rb b/app/workers/push_update_worker.rb
new file mode 100644 (file)
index 0000000..3d398b5
--- /dev/null
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+class PushUpdateWorker
+  include Sidekiq::Worker
+
+  def perform(timeline, account_id, status_id)
+    account = Account.find(account_id)
+    status = Status.find(status_id)
+    message = inline_render(account, 'api/v1/statuses/show', status)
+
+    broadcast(account_id, type: 'update', timeline: timeline, message: message)
+  end
+end