**格式:**
~~~
Cache::del([name : string = null], [type : string = null])
~~~
**参数描述:**
| 参数名 | 参数描述 | 可选值 |
| --- | --- | --- |
| name | 缓存的文件名 | |
| type | 日志的文件类型 | local(本地),redis |
**例子:**
~~~
Cache::del('sys.txt', 'test');
~~~