This repository has been migrated. For ongoing updates, please see https://github.com/thinkjs/thinkjs/tree/master/packages/think-gc.
gc manager for ThinkJS 3.x
npm install think-gc
const gc = require('think-gc');
class handle {
constructor(){
this.gcType = 'session';
gc(this, 3600 * 1000); //gc interval by 1 hour
}
gc(){
//do gc task
}
}