2017-12-30 05:52:04 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityTracker
|
2019-09-30 05:31:51 +10:00
|
|
|
EXPIRE_AFTER = 6.months.seconds
|
2017-12-30 05:52:04 +11:00
|
|
|
|
|
|
|
class << self
|
2019-02-03 05:11:38 +11:00
|
|
|
include Redisable
|
|
|
|
|
2017-12-30 05:52:04 +11:00
|
|
|
def increment(prefix)
|
|
|
|
key = [prefix, current_week].join(':')
|
|
|
|
|
|
|
|
redis.incrby(key, 1)
|
|
|
|
redis.expire(key, EXPIRE_AFTER)
|
|
|
|
end
|
|
|
|
|
|
|
|
def record(prefix, value)
|
|
|
|
key = [prefix, current_week].join(':')
|
|
|
|
|
|
|
|
redis.pfadd(key, value)
|
2018-01-03 00:02:53 +11:00
|
|
|
redis.expire(key, EXPIRE_AFTER)
|
2017-12-30 05:52:04 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def current_week
|
|
|
|
Time.zone.today.cweek
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|