tp5.1在使用easywechat是想把缓存替换成redis,替换后发现easywechat自动维护的缓存值没有写入,我redis是可以正常使用的,我代码哪里写错了吗
图片怎么上传不上来啊
代码如下:
```php
$this->app = Factory::openPlatform($openConfig);
// 绑定缓存
$cache = Cache::init();
$cache = $cache->handler();
$this->app->rebind('cache', $cache);
```