Sha256: 87e84c933ea217006cfa4e0fed30821e88e9fede7cdb8dd8769d1ca838cfa65b

Contents?: true

Size: 1.59 KB

Versions: 136

Compression:

Stored size: 1.59 KB

Contents

require 'rack'

# = HTTP Caching For Rack
#
# Rack::Cache is suitable as a quick, drop-in component to enable HTTP caching
# for Rack-enabled applications that produce freshness (+Expires+, +Cache-Control+)
# and/or validation (+Last-Modified+, +ETag+) information.
#
# * Standards-based (RFC 2616 compliance)
# * Freshness/expiration based caching and validation
# * Supports HTTP Vary
# * Portable: 100% Ruby / works with any Rack-enabled framework
# * Disk, memcached, and heap memory storage backends
#
# === Usage
#
# Create with default options:
#   require 'rack/cache'
#   Rack::Cache.new(app, :verbose => true, :entitystore => 'file:cache')
#
# Within a rackup file (or with Rack::Builder):
#   require 'rack/cache'
#   use Rack::Cache do
#     set :verbose, true
#     set :metastore, 'memcached://localhost:11211/meta'
#     set :entitystore, 'file:/var/cache/rack'
#   end
#   run app
module Rack::Cache
  autoload :Request,      'rack/cache/request'
  autoload :Response,     'rack/cache/response'
  autoload :Context,      'rack/cache/context'
  autoload :Storage,      'rack/cache/storage'
  autoload :CacheControl, 'rack/cache/cachecontrol'

  # Create a new Rack::Cache middleware component that fetches resources from
  # the specified backend application. The +options+ Hash can be used to
  # specify default configuration values (see attributes defined in
  # Rack::Cache::Options for possible key/values). When a block is given, it
  # is executed within the context of the newly create Rack::Cache::Context
  # object.
  def self.new(backend, options={}, &b)
    Context.new(backend, options, &b)
  end
end

Version data entries

136 entries across 112 versions & 23 rubygems

Version Path
rack-cache-1.5.1 lib/rack/cache.rb
rack-cache-1.5.0 lib/rack/cache.rb
rack-cache-1.4.3 lib/rack/cache.rb
rack-cache-1.4.2 lib/rack/cache.rb
rack-cache-1.4.1 lib/rack/cache.rb
rack-cache-1.4.0 lib/rack/cache.rb
rack-cache-1.3.1 lib/rack/cache.rb
rack-cache-1.3.0 lib/rack/cache.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/rack-cache-1.2/lib/rack/cache.rb
josh-rack-cache-0.5.1 lib/rack/cache.rb
rtomayko-rack-cache-0.3.9 lib/rack/cache.rb
rtomayko-rack-cache-0.4 lib/rack/cache.rb
rtomayko-rack-cache-0.5.1 lib/rack/cache.rb
rtomayko-rack-cache-0.5 lib/rack/cache.rb
swipe-rails-0.0.5 vendor/bundle/gems/rack-cache-1.2/lib/rack/cache.rb
active_mailer-0.0.9 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache.rb
active_mailer-0.0.8 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache.rb
active_mailer-0.0.7 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache.rb
active_mailer-0.0.6 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache.rb