api_cache_redis.js
1.29 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
'use strict';
const ws = require('../../lib/ws');
const redis = require('../../lib/redis');
class ApiCache {
constructor() {
this.redis = redis.client;
}
async setKey(key, value, ttl, force) {
this._log(`setting ${key}`);
let setRes = '';
if (ttl && force) {
setRes = await this.redis.setAsync(key, value, 'EX', ttl);
}
if (ttl && !force) {
setRes = await this.redis.setAsync(key, value, 'NX', 'EX', ttl);
}
if (!ttl && force) {
setRes = await this.redis.setAsync(key, value);
}
if (!ttl && !force) {
setRes = await this.redis.setAsync(key, value, 'NX');
}
if (setRes === 'OK') {
this._log(`set ${key} success`);
} else {
this._log(`set ${key} fail`);
}
return setRes;
}
delKey(key) {
this._log(`deleting ${key}`);
let delRes = this.redis.delAsync(key);
if (delRes === 'OK') {
this._log(`deleted ${key} success`);
} else {
this._log(`deleted ${key} fail`);
}
}
_log(message) {
ws.broadcast(`/api_cache/log`, {
host: this.host,
msg: message
});
}
}
module.exports = ApiCache;