mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:38 -06:00
3ce2077aa8
This should reduce a lot of the keys in redis.
14 lines
226 B
Ruby
14 lines
226 B
Ruby
module Jobs
|
|
|
|
class CleanUpDigestKeys < Jobs::Scheduled
|
|
every 1.day
|
|
|
|
def execute(args)
|
|
# Remove unused digest keys
|
|
DigestUnsubscribeKey.where('created_at < ?', 2.months.ago).delete_all
|
|
end
|
|
end
|
|
|
|
end
|
|
|