Giter VIP home page Giter VIP logo

plack-middleware-neverexpire's Introduction

NAME

Plack::Middleware::NeverExpire - set expiration headers far in the future

SYNOPSIS

# in app.psgi
use Plack::Builder;

builder {
    enable_if { $_[0]{'PATH_INFO'} =~ m!^/static/! } 'NeverExpire';
    $app;
};

DESCRIPTION

This middleware adds headers to a response that allow proxies and browsers to cache them for an effectively unlimited time. It is meant to be used in conjunction with the Conditional middleware.

INTERFACE

This middleware provides some functions for general use. They are not exported.

imf_fixdate

This takes an epoch time and returns it as a timestamp formatted according to RFC 9110 section 5.6.7.

inject_headers

This takes a PSGI response array and adds the caching headers to it if the status is 200. It returns nothing.

SEE ALSO

  • Plack::Middleware::Expires

    For most requests you want either immediate expiry with conditional GET, or indefinite caching, or on high-load websites maybe a very short expiry duration for certain URIs (on the order of minutes or seconds, just to keep them from getting hammered): fine-grained control is rarely needed. I wanted a really trivial middleware for when it's not, so I wrote NeverExpire.

    But when you need it, Expires will give you the precise control over expiry durations that NeverExpire doesn't.

plack-middleware-neverexpire's People

Contributors

ap avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.