default.js
697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
const Repo = require('../../repo');
class MemRepo extends Repo{
constructor(){
super();
this.cache = new Set();
}
getByKeys(keys){
if(!keys || !(keys instanceof Array) )
return Promise.reject(new Error('Arguments required!') );
const rst = keys.map(this.cache.has, this.cache);
return Promise.resolve(rst);
}
setByKeys(keys){
if(!keys || !(keys instanceof Array) )
return Promise.reject(new Error('Arguments required') );
keys.forEach(this.cache.add, this.cache);
return Promise.resolve();
}
dispose(callback) {
this.cache = null;
if(callback){
callback();
}else{
return Promise.resolve();
}
}
}
module.exports = MemRepo;