CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 18 Aug 2025 23:14:50 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100115075559
location: https://web.archive.org/web/20100115075559/https://github.com/winton/rack-cache
server-timing: captures_list;dur=0.963017, exclusion.robots;dur=0.037152, exclusion.robots.policy;dur=0.014257, esindex;dur=0.013100, cdx.remote;dur=66.053838, LoadShardBlock;dur=287.026031, PetaboxLoader3.resolve;dur=110.206405, PetaboxLoader3.datanode;dur=61.242728
x-app-server: wwwb-app216
x-ts: 302
x-tr: 401
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app216; 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: Mon, 18 Aug 2025 23:14:50 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Fri, 15 Jan 2010 07:55:59 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b02bfbab7aac21c070aafc1f7e0a4638"
x-archive-orig-x-runtime: 144ms
x-archive-orig-content-length: 29141
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 15 Jan 2010 07:55:59 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 12 Dec 2009 11:15:48 GMT", ; rel="prev memento"; datetime="Sat, 12 Dec 2009 11:15:48 GMT", ; rel="memento"; datetime="Fri, 15 Jan 2010 07:55:59 GMT", ; rel="next memento"; datetime="Mon, 11 Jun 2018 03:28:26 GMT", ; rel="last memento"; datetime="Fri, 23 Oct 2020 22:40:23 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: 51_13_20100115074110_crawl103-c/51_13_20100115075503_crawl101.arc.gz
server-timing: captures_list;dur=0.478307, exclusion.robots;dur=0.018807, exclusion.robots.policy;dur=0.008840, esindex;dur=0.009708, cdx.remote;dur=5.870558, LoadShardBlock;dur=151.988069, PetaboxLoader3.datanode;dur=154.068459, PetaboxLoader3.resolve;dur=88.908838, load_resource;dur=112.472590
x-app-server: wwwb-app216
x-ts: 200
x-tr: 326
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
winton's rack-cache at master - GitHub
This service is courtesy of Pledgie.
winton / rack-cache forked from rtomayko/rack-cache
- Source
- Commits
- Network (11)
- Downloads (4)
- Wiki (1)
- Graphs
-
Branch:
master
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Real HTTP Caching for Ruby Web Apps — Read more
name | age | message | |
---|---|---|---|
![]() |
.autotest | Sun Oct 19 22:24:22 -0700 2008 | add DiskBackedMemory store; other small tweaks ... [rtomayko] |
![]() |
.gitignore | Sun Oct 19 22:24:34 -0700 2008 | documentation system + documentation [rtomayko] |
![]() |
CHANGES | Sat Jun 06 00:01:02 -0700 2009 | Advanced memcached config, including server clu... [rtomayko] |
![]() |
COPYING | Sun Oct 19 22:24:34 -0700 2008 | documentation system + documentation [rtomayko] |
![]() |
README | Mon Mar 16 10:27:23 -0700 2009 | 0.4 release [rtomayko] |
![]() |
Rakefile | Fri Sep 25 21:33:36 -0700 2009 | add gemcutter release tasks [rtomayko] |
![]() |
TODO | Tue Mar 31 06:28:13 -0700 2009 | Update TODO with stuff planned for 0.5 release [rtomayko] |
![]() |
doc/ | Mon May 25 06:40:46 -0700 2009 | Fix bad config examples in storage docs [rtomayko] |
![]() |
example/ | Wed Feb 04 03:32:05 -0800 2009 | Example Sinatra app [nakajima] |
![]() |
lib/ | Loading commit data... ![]() |
|
![]() |
rack-cache.gemspec | Fri Sep 25 21:34:12 -0700 2009 | 0.5.2 maintenance release [rtomayko] |
![]() |
test/ |
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 (If-Modified-Since / If-None-Match) * Vary support * Cache-Control: public, private, max-age, s-maxage, must-revalidate, and proxy-revalidate. * Portable: 100% Ruby / works with any Rack-enabled framework * 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. 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. Using with Rails ---------------- Add this to your `config/environment.rb`: config.middleware.use Rack::Cache, :verbose => true, :metastore => 'file:/var/cache/rack/meta', :entitystore => 'file:/var/cache/rack/body' You should now see `Rack::Cache` listed in the middleware pipeline: rake middleware See the following for more information: https://snippets.aktagon.com/snippets/302 Links ----- Documentation: https://tomayko.com/src/rack-cache/ Mailing List: https://groups.google.com/group/rack-cache GitHub: https://github.com/rtomayko/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!