优化缓存清除
parent
cb26c1b2f7
commit
d4f0918ca3
4
index.js
4
index.js
|
@ -29,7 +29,9 @@ class Smarty {
|
||||||
this.reset()
|
this.reset()
|
||||||
this.__CACHE__ = Object.create(null) // 渲染缓存
|
this.__CACHE__ = Object.create(null) // 渲染缓存
|
||||||
// 消除缓存目录
|
// 消除缓存目录
|
||||||
fs.rm(cacheDir)
|
if (fs.isdir(cacheDir)) {
|
||||||
|
fs.rm(cacheDir)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reset() {
|
reset() {
|
||||||
|
|
|
@ -31,7 +31,9 @@ export default class Smarty {
|
||||||
this.reset()
|
this.reset()
|
||||||
this.__CACHE__ = Object.create(null) // 渲染缓存
|
this.__CACHE__ = Object.create(null) // 渲染缓存
|
||||||
// 消除缓存目录
|
// 消除缓存目录
|
||||||
fs.rm(cacheDir)
|
if (fs.isdir(cacheDir)) {
|
||||||
|
fs.rm(cacheDir)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reset() {
|
reset() {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "smartyx",
|
"name": "smartyx",
|
||||||
"version": "2.1.0",
|
"version": "2.1.1",
|
||||||
"description": "nodeJS模板引擎,理念源自于PHP的smarty模板引擎",
|
"description": "nodeJS模板引擎,理念源自于PHP的smarty模板引擎",
|
||||||
"keywords": ["fivejs", "php", "smarty", "template", "ejs", "jade"],
|
"keywords": ["fivejs", "php", "smarty", "template", "ejs", "jade"],
|
||||||
"author": "yutent <yutent.io@gmail.com>",
|
"author": "yutent <yutent.io@gmail.com>",
|
||||||
|
|
Loading…
Reference in New Issue