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);