pre-warming(double write to cach store and other cache store) cache store wrapper. will switch cache store.
- ActiveSupport::Cache::MemCacheStore
- Dalli::Client
Add this line to your application's Gemfile:
gem 'double_write_cache_stores'
And then execute:
$ bundle
Or install it yourself as:
$ gem install double_write_cache_stores
config/apps.rb
read_and_write_cache_store = ActiveSupport::Cache.lookup_store :dalli_store, 'localhost:11211'
write_only_cache_store = ActiveSupport::Cache.lookup_store :dalli_store, 'localhost:21211'
set :cache, DoubleWriteCacheStores::Client.new(read_and_write_cache_store, write_only_cache_store)
config/application.rb
options={expires_in: 1.week,compress: true}read_and_write_cache_store=ActiveSupport::Cache.lookup_store:mem_cache_store,"localhost:11211",optionsconfig.middleware.insert_before"Rack::Runtime",read_and_write_cache_store.middlewarewrite_only_cache_store=ActiveSupport::Cache.lookup_store:mem_cache_store,"localhost:21211",optionsconfig.cache_store=DoubleWriteCacheStores::Client.newread_and_write_cache_store,write_only_cache_storeRails.cache.fetch("key")do"value"enddocker compose up -d
bundle install
bundle exec appraisal install
bundle exec appraisal activesupport_7_0 rake
#bundle exec appraisal activesupport_5_2 rake
#bundle exec appraisal activesupport_6_0 rake
#bundle exec appraisal activesupport_6_1 rake
#bundle exec appraisal without_activesupport rake
- Fork it ( http://github.com/mixigroup/double_write_cache_stores/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request