mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
3ce2077aa8
This should reduce a lot of the keys in redis.
13 lines
193 B
Ruby
13 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
|
|
|