All Projects → lovell → nginx-cache

lovell / nginx-cache

Licence: Apache-2.0 license
Node.js module to find files in an Nginx cache based on partial URL keys

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to nginx-cache

Pincache
Fast, non-deadlocking parallel object cache for iOS, tvOS and OS X
Stars: ✭ 2,513 (+10370.83%)
Mutual labels:  cache
Cacache
💩💵 but for your data. If you've got the hash, we've got the cache ™ (moved)
Stars: ✭ 245 (+920.83%)
Mutual labels:  cache
onecache
One caching API, Multiple backends
Stars: ✭ 126 (+425%)
Mutual labels:  cache
Laravel App Settings
Store settings in database with a manager UI for your Laravel app
Stars: ✭ 220 (+816.67%)
Mutual labels:  cache
Cphalcon7
Dao7 - Web framework for PHP7.x,项目接洽 QQ 176013762
Stars: ✭ 237 (+887.5%)
Mutual labels:  cache
Ionic Cache
Ionic and Angular cache service with IndexedDB, SQLite and WebSQL support
Stars: ✭ 248 (+933.33%)
Mutual labels:  cache
Pottery
Redis for humans. 🌎🌍🌏
Stars: ✭ 204 (+750%)
Mutual labels:  cache
composer-velocita
Velocita - Composer plugin for transparent caching
Stars: ✭ 26 (+8.33%)
Mutual labels:  cache
Wp Rest Api Cache
Enable caching for WordPress REST API and increase speed of your application
Stars: ✭ 239 (+895.83%)
Mutual labels:  cache
souin
An HTTP cache system, RFC compliant, compatible with @TykTechnologies, @traefik, @caddyserver, @go-chi, @bnkamalesh, @beego, @devfeel, @labstack, @gofiber, @go-goyave, @gin-gonic, @zalando, @zeromicro, @nginx and @apache
Stars: ✭ 269 (+1020.83%)
Mutual labels:  cache
Torchdata
PyTorch dataset extended with map, cache etc. (tensorflow.data like)
Stars: ✭ 226 (+841.67%)
Mutual labels:  cache
Caching
⏱ Caching library with easy-to-use API and many cache backends.
Stars: ✭ 234 (+875%)
Mutual labels:  cache
Next Boost
Add a cache layer for server-side-rendered pages with stale-while-revalidate. Can be considered as an implementation of next.js's Incremental Static Regeneration which works with getServerSideProps.
Stars: ✭ 239 (+895.83%)
Mutual labels:  cache
Cacheable Request
Wrap native HTTP requests with RFC compliant cache support
Stars: ✭ 218 (+808.33%)
Mutual labels:  cache
storage-box
Intuitive and easy-to-use storage box.
Stars: ✭ 26 (+8.33%)
Mutual labels:  cache
Springboot Examples
spring boot 实践系列
Stars: ✭ 216 (+800%)
Mutual labels:  cache
W3 Total Cache Fixed
A community driven build of W3 Total Cache. The aim is to continuously incorporate fixes, improvements, and enhancements over the official WordPress release of W3 Total Cache.
Stars: ✭ 245 (+920.83%)
Mutual labels:  cache
node-cache-manager-ioredis
Redis store for node-cache-manager using IORedis.
Stars: ✭ 47 (+95.83%)
Mutual labels:  cache
echo-mw
统一移到hb-go/echo-web ☞
Stars: ✭ 17 (-29.17%)
Mutual labels:  cache
Bus
Bus 是一个基础框架、服务套件,它基于Java8编写,参考、借鉴了大量已有框架、组件的设计,可以作为后端服务的开发基础中间件。代码简洁,架构清晰,非常适合学习使用。
Stars: ✭ 253 (+954.17%)
Mutual labels:  cache

nginx-cache

A Node.js module that recursively scans the directories and files of an Nginx cache as efficiently as possible looking for partial URL key matches based on a regular expression.

Install

npm install nginx-cache
yarn add nginx-cache

Usage example

Purge all CSS files from an Nginx cache:

const NginxCache = require('nginx-cache');

NginxCache('/var/www/cache')
  .find(/.css$/)
  .on('match', function(file, url) {
    console.log('Attempting to remove cached version of ' + url);
    fs.unlink(file, function(err) {
      if (err) {
        console.log(err.message);
      }
    });
  })
  .on('error', function(err) {
    console.log(err.message);
  })
  .on('finish', function() {
    console.log('Done');
  });

API

NginxCache(directory)

Constructor to which further methods are chained.

  • directory is the path to the Nginx cache, as provided to its proxy_cache_path directive.

find(pattern)

  • pattern is an instance of a standard JavaScript RegExp object.

on(event, listener)

Register a function to listen for the given event, where:

  • event is a String containing the name of the event (see below), and
  • listener is a function to call when the event is emitted.

Event: 'match'

The match event is emitted when a cache file matching the pattern passed to find() is found.

The event attributes are file, url where:

  • file is the full path to the matching cache file, and
  • url is the full cache key that matched the pattern.

Event: 'finish'

The finish event is emitted when all cache directories and files have been scanned. No further events are emitted after this.

Event: 'error'

The error event is emitted when a non-ignorable problem occurs, e.g. lack of permission to read files in the cache directory.

Event: 'warn'

The warn event is emitted when an ignorable problem occurs, e.g. the Nginx cache manager deleted a file.

Alternatives

If you know the complete, original cache key then the commercial Plus version of Nginx provides a proxy_cache_purge directive, which may be more suitable.

Licence

Copyright 2015, 2017 Dispatches LLP.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].