lib/cached_resource/configuration.rb in cached_resource-7.2.0 vs lib/cached_resource/configuration.rb in cached_resource-9.0.0
- old
+ new
@@ -1,10 +1,9 @@
module CachedResource
# The Configuration class manages class specific options
# for cached resource.
class Configuration < OpenStruct
-
# default or fallback cache without rails
CACHE = ActiveSupport::Cache::MemoryStore.new
# default or fallback logger without rails
LOGGER = ActiveSupport::Logger.new(NilIO.instance)
@@ -22,22 +21,23 @@
# :collection_synchronize, default: false,
# :collection_arguments, default: [:all]
# :cache, default: Rails.cache or ActiveSupport::Cache::MemoryStore.new,
# :logger, default: Rails.logger or ActiveSupport::Logger.new(NilIO.new),
# :cache_collections, default: true
- def initialize(options={})
+ def initialize(options = {})
super({
- :enabled => true,
- :race_condition_ttl => 86400,
- :ttl => 604800,
- :ttl_randomization => false,
- :ttl_randomization_scale => 1..2,
- :collection_synchronize => false,
- :collection_arguments => [:all],
- :cache => defined?(Rails.cache) && Rails.cache || CACHE,
- :logger => defined?(Rails.logger) && Rails.logger || LOGGER,
- :cache_collections => true
+ cache: defined?(Rails.cache) && Rails.cache || CACHE,
+ cache_collections: true,
+ cache_key_prefix: nil,
+ collection_arguments: [:all],
+ collection_synchronize: false,
+ enabled: true,
+ logger: defined?(Rails.logger) && Rails.logger || LOGGER,
+ race_condition_ttl: 86400,
+ ttl: 604800,
+ ttl_randomization: false,
+ ttl_randomization_scale: 1..2
}.merge(options))
end
# Determine the time until a cache entry should expire. If ttl_randomization
# is enabled, then a the set ttl will be multiplied by a random
@@ -45,18 +45,21 @@
def generate_ttl
ttl_randomization && randomized_ttl || ttl
end
# Enables caching.
+ # NOTE: Disabled coverage because it is not being picked up by simplecov
+ # :nocov:
def on!
self.enabled = true
end
# Disables caching.
def off!
self.enabled = false
end
+ # :nocov:
private
# Get a randomized ttl value between ttl * ttl_randomization_scale begin
# and ttl * ttl_randomization_scale end
@@ -64,12 +67,11 @@
ttl * sample_range(ttl_randomization_scale)
end
# Choose a random value from within the given range, optionally
# seeded by seed.
- def sample_range(range, seed=nil)
+ def sample_range(range, seed = nil)
srand seed if seed
rand * (range.end - range.begin) + range.begin
end
-
end
-end
\ No newline at end of file
+end