Skip to content
/ cruorin Public

A light extensible HTTP GET reverse proxy cache server.

License

Notifications You must be signed in to change notification settings

epiijs/cruorin

Repository files navigation

Cruorin

Build Status Coverage Status

Cruorin is a lightweight extensible cache proxy server.

cruorin1

Cruorin provides an efficient proxy mechanism by throttling concurrent requests in one request window. Also Cruorin exposes necessary hooks to control the proxy flow and cache policy. All hooks only operate simplified object of request and response called IncomingMessage and OutgoingMessage.

Cruorin only proxy and cache GET requests. Cache will be persisted by writing to file and cache key is hash of incoming message URL with host.

Usage

install as dependency

npm install --save cruorin

specify policies of proxy & cache

const { Server } = require('cruorin');

class MyServer extends Server {
  reviseRequest(message) {
    // => localhost:9999/?ts=1
    // infer upstream
    message.headers.host = message.headers.host.replace('9999', '8080');
    // remove timestamp
    message.url = message.url.replace(/\??ts=[^&]+&?/, '');
    // <= localhost:8080/
    return message;
  }
}

const server = new MyServer();
server.listen(9999);

API

cruorin2

reviseRequest(message): message

Required.
reviseRequest is invoked before transmitting message.
Cruorin will use revised incoming message to emit request and generate internal request hash as cache key.

willApplyCache(message): boolean

Optional, default true.
willApplyCache is invoked before reading and writing cache.
true means that responses will be cached permanently.

willAwaitReply(message): boolean

Optional, default true.
false means that Cruorin will NOT wait for upstream and output a temporary message immediately before upstream responding.

Benchmark

The following table shows QPS of high concurrency simple request in 20 seconds.
The stress test tool is wrk.

(2020/05/29, MacBook Pro 2019)

brew install wrk
npm run play

# 3000 is a fast server
wrk -t 4 -c 300 -d 20 https://localhost:3000

# 3001 is a slow server with 1000ms latency
wrk -t 4 -c 300 -d 20 https://localhost:3001

# 3002 is a crourin server to 3001
wrk -t 4 -c 300 -d 20 https://localhost:3002
name QPS
fast 39700
slow 230
cruorin 28800

About

A light extensible HTTP GET reverse proxy cache server.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published