1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
require 'redis'
require 'flipper'
module Flipper
module Adapters
# Public: Adapter that wraps another adapter with the ability to cache
# adapter calls in Redis
class RedisCache
include ::Flipper::Adapter
Version = 'v1'.freeze
Namespace = "flipper/#{Version}".freeze
FeaturesKey = "#{Namespace}/features".freeze
GetAllKey = "#{Namespace}/get_all".freeze
# Private
def self.key_for(key)
"#{Namespace}/feature/#{key}"
end
# Internal
attr_reader :cache
# Public: The name of the adapter.
attr_reader :name
# Public
def initialize(adapter, cache, ttl = 3600)
@adapter = adapter
@name = :redis_cache
@cache = cache
@ttl = ttl
end
# Public
def features
read_feature_keys
end
# Public
def add(feature)
result = @adapter.add(feature)
@cache.del(FeaturesKey)
result
end
# Public
def remove(feature)
result = @adapter.remove(feature)
@cache.del(FeaturesKey)
@cache.del(key_for(feature.key))
result
end
# Public
def clear(feature)
result = @adapter.clear(feature)
@cache.del(key_for(feature.key))
result
end
# Public
def get(feature)
fetch(key_for(feature.key)) do
@adapter.get(feature)
end
end
def get_multi(features)
read_many_features(features)
end
def get_all
if @cache.setnx(GetAllKey, Time.now.to_i)
@cache.expire(GetAllKey, @ttl)
response = @adapter.get_all
response.each do |key, value|
set_with_ttl key_for(key), value
end
set_with_ttl FeaturesKey, response.keys.to_set
response
else
features = read_feature_keys.map { |key| Flipper::Feature.new(key, self) }
read_many_features(features)
end
end
# Public
def enable(feature, gate, thing)
result = @adapter.enable(feature, gate, thing)
@cache.del(key_for(feature.key))
result
end
# Public
def disable(feature, gate, thing)
result = @adapter.disable(feature, gate, thing)
@cache.del(key_for(feature.key))
result
end
private
def key_for(key)
self.class.key_for(key)
end
def read_feature_keys
fetch(FeaturesKey) { @adapter.features }
end
def read_many_features(features)
keys = features.map(&:key)
cache_result = Hash[keys.zip(multi_cache_get(keys))]
uncached_features = features.reject { |feature| cache_result[feature.key] }
if uncached_features.any?
response = @adapter.get_multi(uncached_features)
response.each do |key, value|
set_with_ttl(key_for(key), value)
cache_result[key] = value
end
end
result = {}
features.each do |feature|
result[feature.key] = cache_result[feature.key]
end
result
end
def fetch(cache_key)
cached = @cache.get(cache_key)
if cached
Marshal.load(cached)
else
to_cache = yield
set_with_ttl(cache_key, to_cache)
to_cache
end
end
def set_with_ttl(key, value)
@cache.setex(key, @ttl, Marshal.dump(value))
end
def multi_cache_get(keys)
cache_keys = keys.map { |key| key_for(key) }
@cache.mget(cache_keys).map do |value|
value ? Marshal.load(value) : nil
end
end
end
end
end
|