1.0.1 • Published 7 years ago
cache-driver-cache v1.0.1
Cache Adapter for Cache Driver
About
Installation
npm install cache cache-driver-cache --saveUsage (Packages)
This section is if you're adding this driver to your package. It also assumes you're using TypeScript.
import { Cache } from "cache-driver"
export class MyAwesomeClass {
    private cache: Cache|null = null;
    constructor(cache?: Cache) {
        if (cache) {
            this.cache = cache;
        }
    }
    public someMethod() {
        if (this.cache !== null) {
            this.cache.save("sessionId", "somerandomstring", 2);
        }
    }
}Usage (Product)
This is assuming you're using MyAwesomeClass from above as well as TypeScript.
This also assumes you're using the cache package.
import { CacheAdapter } from "cache-driver-cache"
let awesome = new MyAwesomeClass(new CacheAdapater());