项目作者: thinkjs
项目描述 :
gc manager for ThinkJS 3.x
高级语言: JavaScript
项目地址: git://github.com/thinkjs/think-gc.git
think-gc



gc manager for ThinkJS 3.x
Install
npm install think-gc
How to use
const gc = require('think-gc');
class handle {
constructor(){
this.gcType = 'session';
gc(this, 3600 * 1000); //gc interval by 1 hour
}
gc(){
//do gc task
}
}