CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 22 Aug 2025 03:50:36 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20081218144051
location: https://web.archive.org/web/20081218144051/https://github.com/rtomayko/rack-cache/tree/master
server-timing: captures_list;dur=0.542168, exclusion.robots;dur=0.019811, exclusion.robots.policy;dur=0.008540, esindex;dur=0.012718, cdx.remote;dur=16.844809, LoadShardBlock;dur=252.491945, PetaboxLoader3.datanode;dur=46.756430, PetaboxLoader3.resolve;dur=54.894311
x-app-server: wwwb-app221
x-ts: 302
x-tr: 299
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app221; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 22 Aug 2025 03:50:37 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Thu, 18 Dec 2008 14:40:50 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 52ms
x-archive-orig-etag: "dbe13074ca3abd87ab9835e0719e017d"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 20909
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 18 Dec 2008 14:40:51 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 29 Oct 2008 03:39:27 GMT", ; rel="prev memento"; datetime="Thu, 13 Nov 2008 02:05:03 GMT", ; rel="memento"; datetime="Thu, 18 Dec 2008 14:40:51 GMT", ; rel="next memento"; datetime="Sun, 21 Dec 2008 21:20:01 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 14:46:25 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_7_20081218140929_crawl106-c/52_7_20081218144031_crawl103.arc.gz
server-timing: captures_list;dur=0.423539, exclusion.robots;dur=0.014475, exclusion.robots.policy;dur=0.006847, esindex;dur=0.009712, cdx.remote;dur=9.095103, LoadShardBlock;dur=271.899920, PetaboxLoader3.datanode;dur=225.897158, PetaboxLoader3.resolve;dur=159.843834, load_resource;dur=159.692191
x-app-server: wwwb-app221
x-ts: 200
x-tr: 496
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
rtomayko's rack-cache at master — GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Run the following if you haven't already:
gem sources -a https://gems.github.com
Install the gem(s):
sudo gem install rtomayko-rack-cache
Description: | Real HTTP Caching for Ruby Web Apps |
Homepage: | https://tomayko.com/src/rack-cache/ |
Clone URL: |
git://github.com/rtomayko/rack-cache.git
Give this clone URL to anyone.
git clone git://github.com/rtomayko/rack-cache.git
|
README
Rack::Cache =========== Rack::Cache is suitable as a quick drop-in component to enable HTTP caching for Rack-based applications that produce freshness (Expires, Cache-Control) and/or validation (Last-Modified, ETag) information: * Standards-based (RFC 2616) * Freshness/expiration based caching * Validation * Vary support * Portable: 100% Ruby / works with any Rack-enabled framework * Configuration language for advanced caching policies * Disk, memcached, and heap memory storage backends For more information about Rack::Cache features and usage, see: https://tomayko.com/src/rack-cache/ Rack::Cache is not overly optimized for performance. The main goal of the project is to provide a portable, easy-to-configure, and standards-based caching solution for small to medium sized deployments. More sophisticated / high-performance caching systems (e.g., Varnish, Squid, httpd/mod-cache) may be more appropriate for large deployments with significant throughput requirements. Status ------ Rack::Cache is a young and experimental project that is likely to change substantially and may not be wholly functional, consistent, fast, or correct. The current focus is on reaching basic compliance with RFC 2616 and providing good documentation. Installation ------------ From Gem: $ sudo gem install rack-cache With a local working copy: $ git clone git://github.com/rtomayko/rack-cache.git $ rake package && sudo rake install Basic Usage ----------- Rack::Cache is implemented as a piece of Rack middleware and can be used with any Rack-based application. If your application includes a rackup (`.ru`) file or uses Rack::Builder to construct the application pipeline, simply require and use as follows: require 'rack/cache' use Rack::Cache, :metastore => 'file:/var/cache/rack/meta', :entitystore => 'file:/var/cache/rack/body', :verbose => true run app Assuming you've designed your backend application to take advantage of HTTP's caching features, no further code or configuration is required for basic caching. Documentation ------------- https://tomayko.com/src/rack-cache/ License ------- Copyright (c) 2008 Ryan Tomayko <https://tomayko.com/about> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This feature is coming soon. Sit tight!