fix(core): update

This commit is contained in:
2020-02-06 16:55:55 +00:00
parent 96e1cc5580
commit 47aa1681bf
3 changed files with 74 additions and 19 deletions

View File

@ -4,11 +4,26 @@ import * as plugins from './levelcache.plugins';
* a leveled cache for storing things for a short time
*/
export class LevelCache {
public cacheMap = new plugins.lik.Stringmap();
public cacheMap = new plugins.lik.Objectmap();
public async storeBlob () {}
// Blobs
/**
* store a Blob
*/
public async storeBlob () {};
public async retrieveBlob () {}
/**
* retrieve a blob
*/
public async retrieveBlob () {};
// Cachen Entries
/**
* store a Cache Entries
*/
public async storeCacheEntry() {};
public async retrieveCacheEntry () {};
public clean() {}
}