1.0.1 • Published 5 years ago

@express.ts/cache v1.0.1

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

@express.ts/cache

A simple in-memory cache for @express.ts

Installation

npm install @express.ts/cache --save

Usage

Test.ts

import { Cache } from "@express.ts/cache";

export class Test {

  protected value = Date.now();

  getExecutionTime () {
    return Date.now() - this.value;
  }

  @Cache(1000) // 1s
  getExecutionTimeWithCache () {
    return Date.now() - this.value;
  }

}

App.ts

import { Test } from "./Test";

const testInstance = new Test();

console.log([ // [ 4, 4 ]
  testInstance.getExecutionTime(),
  testInstance.getExecutionTimeWithCache()
]);

console.log([ // [ 24, 4 ]
  testInstance.getExecutionTime(),
  testInstance.getExecutionTimeWithCache()
]);

setTimeout(() => {
  console.log([ // [ 1038, 1038 ]
    testInstance.getExecutionTime(),
    testInstance.getExecutionTimeWithCache()
  ]);
}, 1001)