0.0
No commit activity in last 3 years
No release in over 3 years
Cache manager helps in managing your cache and it's keys
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 4.2.3
 Project Readme

Cache Manager

Mountable Rails engine to view your cache and manage the keys / cleanup cache.

Note: Currently tested with Filestore and Redis Cache store.

Installation

Add the Gem in your Gemfile

gem 'cache_manager'

And bundle

$ bundle install

Once installed, Mount the engine to your routes.rb

# routes.rb

Rails.application.routes.draw do
  # your other routes
  # snipped for brevity
  mount CacheManager::Engine => "/cache_manager"
end

Usage

Once it's mounted you can access it via browser

http://localhost:3000/cache_manager

This brings you to the Landing page of cache manager. This Gives information about your Cache Stats

alt

http://localhost:3000/cache_manager/keys

This Brings you to the page which lists all your Keys and you can delete them . Clicking on individual links will take you to the page which displays the Cache information.

alt