Commit e292bf5b authored by Brett Walker's avatar Brett Walker Committed by Stan Hu

allow caching options to be specified for counting services

parent bfac8b7a
...@@ -9,7 +9,7 @@ class BaseCountService ...@@ -9,7 +9,7 @@ class BaseCountService
end end
def count def count
Rails.cache.fetch(cache_key, raw: raw?) { uncached_count }.to_i Rails.cache.fetch(cache_key, cache_options) { uncached_count }.to_i
end end
def refresh_cache def refresh_cache
...@@ -31,4 +31,10 @@ class BaseCountService ...@@ -31,4 +31,10 @@ class BaseCountService
def cache_key def cache_key
raise NotImplementedError, 'cache_key must be implemented and return a String' raise NotImplementedError, 'cache_key must be implemented and return a String'
end end
# subclasses can override to add any specific options, such as
# super.merge({ expires_in: 5.minutes })
def cache_options
{ raw: raw? }
end
end end
...@@ -77,4 +77,10 @@ describe BaseCountService, :use_clean_rails_memory_store_caching do ...@@ -77,4 +77,10 @@ describe BaseCountService, :use_clean_rails_memory_store_caching do
expect { service.cache_key }.to raise_error(NotImplementedError) expect { service.cache_key }.to raise_error(NotImplementedError)
end end
end end
describe '#cache_options' do
it 'returns the default in options' do
expect(service.cache_options).to eq({ raw: false })
end
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment