Giter VIP home page Giter VIP logo

plack-middleware-static-openfilecache's Introduction

NAME

Plack::Middleware::Static::OpenFileCache - Plack::Middleware::Static with open file cache

SYNOPSIS

use Plack::Middleware::Static::OpenFileCache;

builder {
    enable "Plack::Middleware::Static",
        path => qr{^/(images|js|css)/},
        root => './htdocs/',
        max  => 100,
        expires => 60,
        buf_size => 8192,
        cache_errors => 1;
    $app;
};

DESCRIPTION

Plack::Middleware::Static::OpenFileCache enables Plack::Middleware::Static to cache open file like nginx. This middleware cache opened file handles and their sizes and modification times for faster contents serving.

CONFIGURATIONS

  • max

    Maximum number of items in cache. If cache is overflowed, items are removed by LRU. (100 by default)

  • expires

    Expires seconds. 60 by default

  • buf_size

    If content size of static file is smaller than buf_size. Plack::Middleware::Static::OpenFileCache reads all to memory. 8192 byte by default.

  • cache_errors

    If enabled, this middleware cache response if status is 40x. Disabled by default.

BENCHMARK

benchmark with ApacheBench and Monoceros

  • benchmark on larger file

      Document Path:          /static/jquery-1.10.2.min.js
      Document Length:        93107 bytes
      
    
      Static                Requests per second:    1219.47 [#/sec] (mean)
      Static::OpenFileCache Requests per second:    1483.52 [#/sec] (mean)
    
  • benchmark on small file

      Document Path:          /static/cpanfile
      Document Length:        160 bytes
      
    
      Static                 Requests per second:    2018.13 [#/sec] (mean)
      Static::OpenFileCache  Requests per second:    2813.08 [#/sec] (mean)
    

LICENSE

Copyright (C) Masahiro Nagano.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Masahiro Nagano [email protected]

plack-middleware-static-openfilecache's People

Contributors

kazeburo 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.