fix(core): update
This commit is contained in:
@ -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() {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user