2017-12-29 18:52:04 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityTracker
|
2019-09-29 19:31:51 +00:00
|
|
|
EXPIRE_AFTER = 6.months.seconds
|
2017-12-29 18:52:04 +00:00
|
|
|
|
|
|
|
class << self
|
2019-02-02 18:11:38 +00:00
|
|
|
include Redisable
|
|
|
|
|
2017-12-29 18:52:04 +00: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-02 13:02:53 +00:00
|
|
|
redis.expire(key, EXPIRE_AFTER)
|
2017-12-29 18:52:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def current_week
|
|
|
|
Time.zone.today.cweek
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|