2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-04 22:39:08 -05:00
|
|
|
task "redis:clean_up" => ["environment"] do
|
2021-11-10 10:53:55 -05:00
|
|
|
next unless Rails.configuration.multisite
|
2016-12-04 22:39:08 -05:00
|
|
|
|
|
|
|
dbs = RailsMultisite::ConnectionManagement.all_dbs
|
|
|
|
dbs << Discourse::SIDEKIQ_NAMESPACE
|
|
|
|
|
|
|
|
regexp = /((\$(?<message_bus>\w+)$)|(^?(?<namespace>\w+):))/
|
|
|
|
|
|
|
|
cursor = 0
|
2019-12-03 04:05:53 -05:00
|
|
|
redis = Discourse.redis.without_namespace
|
2016-12-04 22:39:08 -05:00
|
|
|
|
|
|
|
loop do
|
|
|
|
cursor, keys = redis.scan(cursor)
|
|
|
|
cursor = cursor.to_i
|
|
|
|
|
2022-05-09 18:19:02 -04:00
|
|
|
redis.multi do |transaction|
|
2016-12-04 22:39:08 -05:00
|
|
|
keys.each do |key|
|
|
|
|
if match = key.match(regexp)
|
|
|
|
db_name = match[:message_bus] || match[:namespace]
|
|
|
|
|
|
|
|
transaction.del(key) if !dbs.include?(db_name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
break if cursor == 0
|
|
|
|
end
|
|
|
|
end
|