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