mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
PERF: Do fewer queries when converting posts. (#8358)
- Avoid using User#find and then fetching the user_stat association just to update a counter - We did this for every post in the topic. - Avoid having to query the topic_allowed_user table everytime we want add a new topic_allowed_user - Use pluck to fetch just what we need.
This commit is contained in:
parent
172832f353
commit
a3df065058
@ -61,31 +61,30 @@ class TopicConverter
|
|||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
def posters
|
||||||
|
@posters ||= @topic.posts.distinct.pluck(:user_id).to_a
|
||||||
|
end
|
||||||
|
|
||||||
def update_user_stats
|
def update_user_stats
|
||||||
@topic.posts.where(deleted_at: nil).each do |p|
|
# update posts count. NOTE that DirectoryItem.refresh will overwrite this by counting UserAction records.
|
||||||
user = User.find(p.user_id)
|
|
||||||
# update posts count. NOTE that DirectoryItem.refresh will overwrite this by counting UserAction records.
|
|
||||||
user.user_stat.post_count += 1
|
|
||||||
user.user_stat.save!
|
|
||||||
end
|
|
||||||
# update topics count
|
# update topics count
|
||||||
@topic.user.user_stat.topic_count += 1
|
UserStat.where(user_id: posters).update_all('post_count = post_count + 1')
|
||||||
@topic.user.user_stat.save!
|
UserStat.where(user_id: @topic.user_id).update_all('topic_count = topic_count + 1')
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_allowed_users
|
def add_allowed_users
|
||||||
@topic.posts.where(deleted_at: nil).each do |p|
|
# update posts count. NOTE that DirectoryItem.refresh will overwrite this by counting UserAction records.
|
||||||
user = User.find(p.user_id)
|
|
||||||
@topic.topic_allowed_users.build(user_id: user.id) unless @topic.topic_allowed_users.where(user_id: user.id).exists?
|
|
||||||
# update posts count. NOTE that DirectoryItem.refresh will overwrite this by counting UserAction records.
|
|
||||||
user.user_stat.post_count -= 1
|
|
||||||
user.user_stat.save!
|
|
||||||
end
|
|
||||||
@topic.topic_allowed_users.build(user_id: @user.id) unless @topic.topic_allowed_users.where(user_id: @user.id).exists?
|
|
||||||
@topic.topic_allowed_users = @topic.topic_allowed_users.uniq(&:user_id)
|
|
||||||
# update topics count
|
# update topics count
|
||||||
@topic.user.user_stat.topic_count -= 1
|
UserStat.where(user_id: posters).update_all('post_count = post_count - 1')
|
||||||
@topic.user.user_stat.save!
|
UserStat.where(user_id: @topic.user_id).update_all('topic_count = topic_count - 1')
|
||||||
|
|
||||||
|
existing_allowed_users = @topic.topic_allowed_users.pluck(:user_id)
|
||||||
|
users_to_allow = posters << @user.id
|
||||||
|
|
||||||
|
(users_to_allow - existing_allowed_users).uniq.each do |user_id|
|
||||||
|
@topic.topic_allowed_users.build(user_id: user_id)
|
||||||
|
end
|
||||||
|
|
||||||
@topic.save!
|
@topic.save!
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user