Revert "Load posts in batches while indexing problem posts."

This reverts commit ce57ff9fcf.

Limit is ignored with `find_each`.
This commit is contained in:
Guo Xiang Tan 2017-06-01 11:15:27 +09:00
parent 82ed51450e
commit 13c6695d65

View File

@ -51,7 +51,7 @@ class Search
WHERE pd.post_id IS NULL WHERE pd.post_id IS NULL
)', SiteSetting.default_locale).limit(10000) )', SiteSetting.default_locale).limit(10000)
posts.find_each do |post| posts.each do |post|
# force indexing # force indexing
post.cooked += " " post.cooked += " "
SearchIndexer.index(post) SearchIndexer.index(post)
@ -64,7 +64,7 @@ class Search
WHERE pd.topic_id IS NULL AND p2.post_number = 1 WHERE pd.topic_id IS NULL AND p2.post_number = 1
)', SiteSetting.default_locale).limit(10000) )', SiteSetting.default_locale).limit(10000)
posts.find_each do |post| posts.each do |post|
# force indexing # force indexing
post.cooked += " " post.cooked += " "
SearchIndexer.index(post) SearchIndexer.index(post)