@nodulus/cache
v2.0.3
Published
[![NPM](https://nodei.co/npm/@nodulus/cache.png)](https://npmjs.org/package/@nodulus/cache)
Downloads
22
Readme
@nodulus/cache
cache component for nodulus.
install
npm install @nodulus/cache
usage
var cache=require("@nodulus/cache");
public get(collection_name: string, array_of_keys:[string] || single_key:string, asObject: boolean)
let result = await cache.get("my-collection", "12345678", false);
public getCollection(collection_name: string, asObject: boolean)
let result = await cache.get("my-collection", false);