以下问题在重新安装 框架、webman/think-cache 后复现。
```php
\support\think\Cache::set($key, 123);
\support\think\Cache::get($key); // 得到字符串 '123'
\support\think\Cache::tag('tag1')->set($key, 123);
\support\think\Cache::tag('tag1')->get($key); // 得到字符串 '123'
// \support\Cache 则不存在该问题。
```
问题出在如下代码。
