This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-12-29 10:52:04 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityTracker
|
2019-09-29 12:31:51 -07:00
|
|
|
EXPIRE_AFTER = 6.months.seconds
|
2017-12-29 10:52:04 -08:00
|
|
|
|
|
|
|
class << self
|
2019-02-02 10:11:38 -08:00
|
|
|
include Redisable
|
|
|
|
|
2017-12-29 10:52:04 -08: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 05:02:53 -08:00
|
|
|
redis.expire(key, EXPIRE_AFTER)
|
2017-12-29 10:52:04 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def current_week
|
|
|
|
Time.zone.today.cweek
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|