From 1132af15151713f52d8d1e320271185865a79633 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sat, 16 Nov 2019 21:01:07 -0600 Subject: Moved to using a normalized text column for searches. Admins using an FTS-enabled version of Monsterfork will need to apply the migration from `dist/search.sql` then run `bundle exec rails monsterfork:index_statuses`. --- lib/tasks/monsterfork.rake | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/tasks/monsterfork.rake (limited to 'lib/tasks') diff --git a/lib/tasks/monsterfork.rake b/lib/tasks/monsterfork.rake new file mode 100644 index 000000000..e55bb1930 --- /dev/null +++ b/lib/tasks/monsterfork.rake @@ -0,0 +1,17 @@ +namespace :monsterfork do + desc '(Re-)Index statuses for search.' + task index_statuses: :environment do + include TextHelper + + i = 0 + total = Status.count + + Status.find_in_batches do |statuses| + ActiveRecord::Base.logger.info("Indexing statuses #{1+i}-#{statuses.count} of #{total}.") + i += statuses.count + statuses.each do |s| + ActiveRecord::Base.logger.silence { s.update_column(:normalized_text, normalize_status(s)) } + end + end + end +end -- cgit