|
|
@ -12,8 +12,12 @@ export default class RedisCacheMgr extends CacheMgr { |
|
|
|
constructor(config: any) { |
|
|
|
constructor(config: any) { |
|
|
|
super(); |
|
|
|
super(); |
|
|
|
this.client = new Redis(config); |
|
|
|
this.client = new Redis(config); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// avoid flushing db in worker container
|
|
|
|
|
|
|
|
if (!process.env['NC_WORKER_CONTAINER']) { |
|
|
|
// flush the existing db with selected key (Default: 0)
|
|
|
|
// flush the existing db with selected key (Default: 0)
|
|
|
|
this.client.flushdb(); |
|
|
|
this.client.flushdb(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// TODO(cache): fetch orgs once it's implemented
|
|
|
|
// TODO(cache): fetch orgs once it's implemented
|
|
|
|
const orgs = 'noco'; |
|
|
|
const orgs = 'noco'; |
|
|
|