Skip to content
Extraits de code Groupes Projets
Valider 1e96ce37 rédigé par Kurtis Rainbolt-Greene's avatar Kurtis Rainbolt-Greene
Parcourir les fichiers

By pushing this into a worker we can reduce the amount of time the feed...

By pushing this into a worker we can reduce the amount of time the feed manager using workers eat up a connection
parent ccb6a658
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -34,7 +34,7 @@ class FeedManager ...@@ -34,7 +34,7 @@ class FeedManager
trim(timeline_type, account.id) trim(timeline_type, account.id)
end 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 end
def broadcast(timeline_id, options = {}) def broadcast(timeline_id, options = {})
......
# 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
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter