0.0
No commit activity in last 3 years
No release in over 3 years
Rack::Nocache ensures all requests are uncached
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

Rack::Nocache

It deletes your ETags, it ignores your If-* headers, to tramples all over your caching headers with:

  {
    "Cache-Control" => "no-cache, no-store, max-age=0, must-revalidate",
    "Pragma" => "no-cache",
    "Expires" => "Fri, 29 Aug 1997 02:14:00 EST"
  }

It's an abusive, grumpy, bandwidth wasting, low down dirty dog of a middleware.

But I'm sure you'll find some use for it in development mode.

  $ gem install rack-nocache

  require "rack-nocache" # or "rack/nocache", whatever floats your boat.
  use Rack::Nocache