The project is in a healthy, maintained state
Mission Control dashboard for monitoring and managing SolidCache
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Project Readme

MissionControl::Cache

A Mission Control dashboard for monitoring and managing SolidCache.

Usage

After installing the gem, mount the engine in your Rails application's routes:

# config/routes.rb
Rails.application.routes.draw do
  mount MissionControl::Cache::Engine => "/cache"
  
  # Your other routes...
end

This will make the dashboard available at /cache in your application.

Configuration

Make sure SolidCache is properly configured in your application:

# config/initializers/solid_cache.rb
Rails.application.config.solid_cache.backend = :redis
Rails.application.config.solid_cache.namespace = "your_app_cache"
Rails.application.config.solid_cache.expires_in = 1.hour

Installation

Add this line to your application's Gemfile:

gem "mission_control-cache"

And then execute:

$ bundle

Or install it yourself as:

$ gem install mission_control-cache

Contributing

Contribution directions go here.

License

The gem is available as open source under the terms of the MIT License.