2017-08-01 16:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-15 15:01:25 -04:00
|
|
|
require "message_bus/distributed_cache"
|
2014-11-11 17:43:41 -05:00
|
|
|
|
2018-10-15 15:01:25 -04:00
|
|
|
class DistributedCache < MessageBus::DistributedCache
|
2017-10-20 04:39:31 -04:00
|
|
|
def initialize(key, manager: nil, namespace: true)
|
2018-10-15 15:01:25 -04:00
|
|
|
super(key, manager: manager, namespace: namespace, app_version: Discourse.git_version)
|
2014-11-11 17:43:41 -05:00
|
|
|
end
|
2021-06-02 03:46:48 -04:00
|
|
|
|
|
|
|
# Defer setting of the key in the cache for performance critical path to avoid
|
|
|
|
# waiting on MessageBus to publish the message which involves writing to Redis.
|
|
|
|
def defer_set(k, v)
|
|
|
|
Scheduler::Defer.later("#{@key}_set") { self[k] = v }
|
|
|
|
end
|
2021-06-03 02:02:40 -04:00
|
|
|
|
|
|
|
def defer_get_set(k, &block)
|
2022-02-17 09:52:14 -05:00
|
|
|
return self[k] if hash.key? k
|
2021-06-03 02:02:40 -04:00
|
|
|
value = block.call
|
|
|
|
self.defer_set(k, value)
|
|
|
|
value
|
|
|
|
end
|
2014-11-11 17:43:41 -05:00
|
|
|
end
|